Initial commit.
This commit is contained in:
commit
1f90ca2575
63 changed files with 4059 additions and 0 deletions
27
controllers/settings/index.js
Normal file
27
controllers/settings/index.js
Normal 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>);
|
||||
}
|
||||
}
|
||||
Reference in a new issue