good enough for government (or habitat) work
This commit is contained in:
@ -22,9 +22,9 @@ export default function TabLayout() {
|
||||
<Tabs.Screen
|
||||
name="index"
|
||||
options={{
|
||||
title: 'Conversion',
|
||||
title: 'Home Screen',
|
||||
tabBarIcon: ({ color, focused }) => (
|
||||
<TabBarIcon name={focused ? 'recording' : 'recording-outline'} color={color} />
|
||||
<TabBarIcon name={focused ? 'scale' : 'scale-outline'} color={color} />
|
||||
),
|
||||
}}
|
||||
/>
|
||||
@ -33,7 +33,7 @@ export default function TabLayout() {
|
||||
options={{
|
||||
title: 'Products',
|
||||
tabBarIcon: ({ color, focused }) => (
|
||||
<TabBarIcon name={focused ? 'recording' : 'recording-outline'} color={color} />
|
||||
<TabBarIcon name={focused ? 'list' : 'list-outline'} color={color} />
|
||||
),
|
||||
}}
|
||||
/>
|
||||
|
@ -1,13 +1,10 @@
|
||||
import ProductCalculatorSelector from '@/components/ProductCalculatorSelector';
|
||||
import { SafeAreaView, View } from 'react-native';
|
||||
import { SafeAreaView, Text, View } from 'react-native';
|
||||
|
||||
|
||||
const fallbackImage = require("@/assets/images/board-stock-lightened-blurred.png");
|
||||
|
||||
export const HomeScreen = () => {
|
||||
export default function Convert () {
|
||||
return (
|
||||
<SafeAreaView>
|
||||
<View>
|
||||
<ProductCalculatorSelector />
|
||||
</SafeAreaView>
|
||||
</View>
|
||||
)
|
||||
}
|
||||
|
Reference in New Issue
Block a user