-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from urbantumbleweed/mobile-navigation
Mobile navigation
- Loading branch information
Showing
8 changed files
with
93 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,3 +28,4 @@ node_modules/ | |
bower_components/ | ||
|
||
keys.sh | ||
Client/ios/Lantern.xcodeproj/project.pbxproj |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
'use strict'; | ||
|
||
var React = require('react-native'); | ||
var { | ||
StyleSheet, | ||
Text, | ||
View, | ||
} = React; | ||
|
||
var Login = require('./Login-button'); | ||
|
||
/** | ||
* A sample app that demonstrates use of the FBSDK login button, native share dialog, and graph requests. | ||
*/ | ||
var Signin = React.createClass({ | ||
render: function() { | ||
return ( | ||
<View style={styles.container} > | ||
<Text style={styles.text} >We dont need no stinking image background yet!!</Text> | ||
<Login navigator={this.props.navigator} style={styles.loginContainer}/> | ||
</View> | ||
); | ||
} | ||
}); | ||
|
||
// importing styles | ||
var styles = StyleSheet.create(require('../styles.js')); | ||
|
||
module.exports = Signin; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
'use strict'; | ||
|
||
var React = require('react-native'); | ||
var { | ||
StyleSheet, | ||
Text, | ||
View, | ||
} = React; | ||
|
||
/** | ||
* A sample app that demonstrates use of the FBSDK login button, native share dialog, and graph requests. | ||
*/ | ||
var Home = React.createClass({ | ||
render: function() { | ||
return ( | ||
<View style={styles.container} > | ||
<Text style={styles.text} > let me do it as it would be on the home screen</Text> | ||
</View> | ||
); | ||
} | ||
}); | ||
|
||
// importing styles | ||
var styles = StyleSheet.create(require('../styles.js')); | ||
|
||
module.exports = Home; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters