Browse Source

Better formatting for sort order selection in ProximoListScreen

Yohan Simard 4 years ago
parent
commit
9bbd3dd6b2
1 changed files with 8 additions and 8 deletions
  1. 8
    8
      screens/Proximo/ProximoListScreen.js

+ 8
- 8
screens/Proximo/ProximoListScreen.js View File

@@ -213,35 +213,35 @@ export default class ProximoListScreen extends React.Component<Props, State> {
213 213
                 >
214 214
                     <View style={{
215 215
                         flexDirection: 'row',
216
-                        justifyContent: 'center',
216
+                        justifyContent: 'flex-start',
217 217
                         alignItems: 'center'
218 218
                     }}>
219
-                        <Text>{i18n.t('proximoScreen.sortPrice')}</Text>
220 219
                         <RadioButton value={1}/>
220
+                        <Text>{i18n.t('proximoScreen.sortPrice')}</Text>
221 221
                     </View>
222 222
                     <View style={{
223 223
                         flexDirection: 'row',
224
-                        justifyContent: 'center',
224
+                        justifyContent: 'flex-start',
225 225
                         alignItems: 'center'
226 226
                     }}>
227
-                        <Text>{i18n.t('proximoScreen.sortPriceReverse')}</Text>
228 227
                         <RadioButton value={2}/>
228
+                        <Text>{i18n.t('proximoScreen.sortPriceReverse')}</Text>
229 229
                     </View>
230 230
                     <View style={{
231 231
                         flexDirection: 'row',
232
-                        justifyContent: 'center',
232
+                        justifyContent: 'flex-start',
233 233
                         alignItems: 'center'
234 234
                     }}>
235
-                        <Text>{i18n.t('proximoScreen.sortName')}</Text>
236 235
                         <RadioButton value={3}/>
236
+                        <Text>{i18n.t('proximoScreen.sortName')}</Text>
237 237
                     </View>
238 238
                     <View style={{
239 239
                         flexDirection: 'row',
240
-                        justifyContent: 'center',
240
+                        justifyContent: 'flex-start',
241 241
                         alignItems: 'center'
242 242
                     }}>
243
-                        <Text>{i18n.t('proximoScreen.sortNameReverse')}</Text>
244 243
                         <RadioButton value={4}/>
244
+                        <Text>{i18n.t('proximoScreen.sortNameReverse')}</Text>
245 245
                     </View>
246 246
                 </RadioButton.Group>
247 247
             </View>

Loading…
Cancel
Save