feat(companion): move orchestrator before ble tab
This commit is contained in:
@@ -6,20 +6,6 @@ const iconSize = 22;
|
|||||||
export default function TabLayout() {
|
export default function TabLayout() {
|
||||||
return (
|
return (
|
||||||
<Tabs screenOptions={{ headerShown: false }}>
|
<Tabs screenOptions={{ headerShown: false }}>
|
||||||
<Tabs.Screen
|
|
||||||
name="index"
|
|
||||||
options={{
|
|
||||||
title: "BLE",
|
|
||||||
tabBarLabel: "BLE",
|
|
||||||
tabBarIcon: ({ color, focused }) => (
|
|
||||||
<Ionicons
|
|
||||||
color={color}
|
|
||||||
name={focused ? "bluetooth" : "bluetooth-outline"}
|
|
||||||
size={iconSize}
|
|
||||||
/>
|
|
||||||
),
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<Tabs.Screen
|
<Tabs.Screen
|
||||||
name="orchestrator"
|
name="orchestrator"
|
||||||
options={{
|
options={{
|
||||||
@@ -34,6 +20,20 @@ export default function TabLayout() {
|
|||||||
),
|
),
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
<Tabs.Screen
|
||||||
|
name="index"
|
||||||
|
options={{
|
||||||
|
title: "BLE",
|
||||||
|
tabBarLabel: "BLE",
|
||||||
|
tabBarIcon: ({ color, focused }) => (
|
||||||
|
<Ionicons
|
||||||
|
color={color}
|
||||||
|
name={focused ? "bluetooth" : "bluetooth-outline"}
|
||||||
|
size={iconSize}
|
||||||
|
/>
|
||||||
|
),
|
||||||
|
}}
|
||||||
|
/>
|
||||||
<Tabs.Screen
|
<Tabs.Screen
|
||||||
name="todos"
|
name="todos"
|
||||||
options={{
|
options={{
|
||||||
|
|||||||
Reference in New Issue
Block a user