@@ -60,16 +60,24 @@ export default class ColorPickerScreen extends Component {
60
60
return (
61
61
< ScrollView style = { styles . container } contentContainerStyle = { { paddingBottom : 20 } } >
62
62
< View center bg-white marginV-10 >
63
- < Text text60 margin-10 style = { { color} } > Selected Color: { color } </ Text >
63
+ < Text text60 margin-10 style = { { color} } >
64
+ Selected Color: { color }
65
+ </ Text >
64
66
< View center marginB-10 style = { { height : 50 , width : 200 , backgroundColor : color } } >
65
- < Text text60 style = { { color : textColor } } > { color } </ Text >
67
+ < Text text60 style = { { color : textColor } } >
68
+ { color }
69
+ </ Text >
66
70
</ View >
67
71
</ View >
68
72
< View bg-white >
69
- < Text text60 marginL-20 marginB-4 marginT-24 > Theme Color</ Text >
73
+ < Text text60 marginL-20 marginB-4 marginT-24 >
74
+ Theme Color
75
+ </ Text >
70
76
< Text marginL-20 > Choose a color for your place’s theme.</ Text >
71
- < ColorPalette value = { paletteValue } onValueChange = { this . onPaletteValueChange } colors = { colors } />
72
- < Text marginL-20 marginT-16 > Custom Colors</ Text >
77
+ < ColorPalette value = { paletteValue } onValueChange = { this . onPaletteValueChange } colors = { colors } />
78
+ < Text marginL-20 marginT-16 >
79
+ Custom Colors
80
+ </ Text >
73
81
< ColorPicker
74
82
initialColor = { color }
75
83
colors = { customColors }
@@ -82,11 +90,19 @@ export default class ColorPickerScreen extends Component {
82
90
</ View >
83
91
84
92
< View marginV-10 bg-white >
85
- < Text center text60 marginT-10 > Color Name</ Text >
93
+ < Text center text60 marginT-10 >
94
+ Color Name
95
+ </ Text >
86
96
< View spread row margin-10 style = { { backgroundColor : nearestColor } } >
87
- < Text margin-5 text70 style = { { color : textColor } } > { nearestColor } </ Text >
88
- < Text margin-5 text60 style = { { color : textColor } } > { colorName } </ Text >
89
- < Text margin-5 text70 style = { { color : textColor } } > { isMapped } </ Text >
97
+ < Text margin-5 text70 style = { { color : textColor } } >
98
+ { nearestColor }
99
+ </ Text >
100
+ < Text margin-5 text60 style = { { color : textColor } } >
101
+ { colorName }
102
+ </ Text >
103
+ < Text margin-5 text70 style = { { color : textColor } } >
104
+ { isMapped }
105
+ </ Text >
90
106
</ View >
91
107
</ View >
92
108
</ ScrollView >
0 commit comments