Skip to content

Instantly share code, notes, and snippets.

@Louiefigz
Last active July 10, 2017 08:51
Show Gist options
  • Save Louiefigz/40dbe00812f10fbf7cf6d8052d11ed35 to your computer and use it in GitHub Desktop.
Save Louiefigz/40dbe00812f10fbf7cf6d8052d11ed35 to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import { View, ScrollView } from 'react-native';
import { List, ListItem } from 'react-native-elements';
class Settings extends Component {
render() {
return (
<View>
<ScrollView>
<List>
<ListItem
title="Notifications"
/>
<ListItem
title="Profile"
/>
<ListItem
title="Password"
/>
</List>
<List>
<ListItem
title="Sign Out"
/>
</List>
</ScrollView>
</View>
);
}
}
export default Settings;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment