-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5f489d8
commit 332d1a3
Showing
21 changed files
with
565 additions
and
81 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
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,18 @@ | ||
import React, { Component } from "react"; | ||
import { FlatList, Text, View, Image, TextInput, StyleSheet,TouchableHighlight, } from "react-native"; | ||
|
||
export default class AllUsers extends Component { | ||
|
||
static navigationOptions = | ||
{ | ||
title: 'AllUsers', | ||
}; | ||
|
||
render() { | ||
return ( | ||
<View style={{flex: 1, alignItems: 'center', paddingTop: 28, backgroundColor: '#bac4bc'}}> | ||
<Text>Hello, All Users</Text> | ||
</View> | ||
); | ||
} | ||
} |
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,18 @@ | ||
import React, { Component } from "react"; | ||
import { FlatList, Text, View, Image, TextInput, StyleSheet,TouchableHighlight, } from "react-native"; | ||
|
||
export default class FriendRequest extends Component { | ||
|
||
static navigationOptions = | ||
{ | ||
title: 'FriendRequest', | ||
}; | ||
|
||
render() { | ||
return ( | ||
<View style={{flex: 1, alignItems: 'center', paddingTop: 28, backgroundColor: '#bac4bc'}}> | ||
<Text>Hello, FriendRequest</Text> | ||
</View> | ||
); | ||
} | ||
} |
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,18 @@ | ||
import React, { Component } from "react"; | ||
import { FlatList, Text, View, Image, TextInput, StyleSheet,TouchableHighlight, } from "react-native"; | ||
|
||
export default class AllUsers extends Component { | ||
|
||
static navigationOptions = | ||
{ | ||
title: 'AllUsers', | ||
}; | ||
|
||
render() { | ||
return ( | ||
<View style={{flex: 1, alignItems: 'center', paddingTop: 90, paddingHorizontal: 50}}> | ||
<Text style={{fontSize: 50, textAlign: 'center'}}>Welcome to Chatter, User</Text> | ||
</View> | ||
); | ||
} | ||
} |
Oops, something went wrong.