-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAppStyles.js
45 lines (43 loc) · 962 Bytes
/
AppStyles.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
43
44
45
import { StyleSheet } from 'react-native';
const styles = StyleSheet.create({
viewStyle: {
marginTop: 20,
alignItems: 'center',
justifyContent: 'center',
margin: 10,
},
header: {
fontSize: 30,
color: '#fdfdfd',
fontWeight: 'bold',
fontFamily: 'sans-serif-thin',
},
inputStyle: {
height: 40,
width: 200,
fontSize: 15,
color: '#f2f2f2',
fontFamily: 'serif',
alignContent: 'center',
borderColor: '#228899',
},
todoStyle: {
flexDirection: 'row',
justifyContent: 'space-between',
paddingHorizontal: 10,
paddingTop: 8,
width: 350,
height: 40,
backgroundColor: "#f9f9f930",
borderBottomWidth: 0.8,
},
todoText: {
width: 250,
alignContent: 'center',
color: '#f2f2f2',
fontFamily: 'Roboto',
fontSize: 16,
fontWeight: 'bold'
}
});
export default styles;