-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.js
40 lines (39 loc) · 906 Bytes
/
styles.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
import { StyleSheet } from "react-native";
export default StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
marginTop: 12,
},
todoitem: {
flexDirection: 'row',
justifyContent: 'space-between',
alignItems: 'center',
marginBottom: 8,
padding: 8,
borderWidth: 1,
borderColor: '#ddd',
borderRadius: 4,
marginTop: 25,
paddingLeft: 80,
},
todoitemtext: {
flex: 1,
marginRight: 8,
color: '#333',
},
completed: {
textDecorationLine: 'line-through',
color: '#888',
},
deletebutton: {
backgroundColor: '#ff6347',
color: '#fff',
paddingVertical: 4,
paddingHorizontal: 8,
borderRadius: 4,
borderWidth: 1,
borderColor: '#ff6347',
cursor: 'pointer',
},
});