-
Notifications
You must be signed in to change notification settings - Fork 0
/
Settings.js
48 lines (28 loc) · 917 Bytes
/
Settings.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import React, { Component } from 'react';
import { Row, Grid } from "react-native-easy-grid";
import KeepAwake from 'react-native-keep-awake';
import {observer} from 'mobx-react';
import {Store} from './store.js';
import {
Text,CheckBox,TouchableOpacity
} from 'react-native';
import {controller} from './controller.js';
import IconI from 'react-native-vector-icons/Ionicons';
@observer
export default class Settings extends Component {
constructor(props) {
super(props);
}
render() {
return (
<Grid>
<IconI name="md-star-outline" size={40} color="#CDD989" />
<IconI name="md-star" size={40} color="#CDD989" />
<CheckBox value={true}/><Text>Zaman</Text>
<TouchableOpacity style={{top: 0,right:0}}>
<IconI name="md-star-outline" size={40} color="#CDD989" />
</TouchableOpacity>
</Grid>
);
}
}