Skip to content

Instantly share code, notes, and snippets.

@LuffyAnshul
Last active January 17, 2021 07:14
Show Gist options
  • Select an option

  • Save LuffyAnshul/e22b16d56d427b6027471de3fdaa3d59 to your computer and use it in GitHub Desktop.

Select an option

Save LuffyAnshul/e22b16d56d427b6027471de3fdaa3d59 to your computer and use it in GitHub Desktop.
Private Chat React Native - Views / UI
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