Last active
January 17, 2021 07:14
-
-
Save LuffyAnshul/e22b16d56d427b6027471de3fdaa3d59 to your computer and use it in GitHub Desktop.
Private Chat React Native - Views / UI
This file contains hidden or 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
| if (!user) { | |
| return ( | |
| <View style={styles.container}> | |
| <TextInput | |
| style={styles.input} | |
| placeholder='Enter your name' | |
| value={name} | |
| onChangeText={setName} | |
| /> | |
| <Button onPress={handlePress} title='💬 Enter chat room' /> | |
| </View> | |
| ); | |
| } | |
| return <GiftedChat messages={messages} user={user} onSend={handleSend} />; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment