Browse Source

Moved tab order

Arnaud Vergnet 3 years ago
parent
commit
8fca2eac12
1 changed files with 5 additions and 6 deletions
  1. 5
    6
      src/navigation/MainTabNavigator.js

+ 5
- 6
src/navigation/MainTabNavigator.js View File

@@ -330,17 +330,16 @@ export default class TabNavigator extends React.Component<Props> {
330 330
                 tabBar={props => <CustomTabBar {...props} />}
331 331
             >
332 332
                 <Tab.Screen
333
-                    name="proxiwash"
334
-                    component={ProxiwashStackComponent}
335
-                    options={{title: i18n.t('screens.proxiwash')}}
336
-                />
337
-                <Tab.Screen
338 333
                     name="services"
339 334
                     option
340 335
                     component={ServicesStackComponent}
341 336
                     options={{title: i18n.t('screens.services')}}
342 337
                 />
343
-
338
+                <Tab.Screen
339
+                    name="proxiwash"
340
+                    component={ProxiwashStackComponent}
341
+                    options={{title: i18n.t('screens.proxiwash')}}
342
+                />
344 343
                 <Tab.Screen
345 344
                     name="home"
346 345
                     component={this.createHomeStackComponent}

Loading…
Cancel
Save