Initial commit.

This commit is contained in:
Ryan McGrath 2018-04-05 15:17:53 -04:00
commit 1f90ca2575
No known key found for this signature in database
GPG key ID: 811674B62B666830
63 changed files with 4059 additions and 0 deletions

View file

@ -0,0 +1,27 @@
/**
* SettingsViewController
*
* Yeah, I do it iOS style. Handles settings.
*
* @copyright Ryan McGrath 2018.
*/
import React from 'react';
import {ScrollView} from 'react-native';
import SettingsList, {Header, Item} from 'react-native-settings-list';
import styles from '../../styles';
import MemeleeViewController from '../MemeleeViewController';
export default class SettingsViewController extends MemeleeViewController {
pressed = () => {}
render() {
return (<ScrollView>
<SettingsList>
<Header headerText='First Grouping' headerStyle={{color:'white'}}/>
<Item itemWidth={50} title='Icon Example' onPress={this.pressed} />
</SettingsList>
</ScrollView>);
}
}