Add deep links (android)

This commit is contained in:
Paul Frazee 2022-06-13 21:34:07 -05:00
parent 012af05ab8
commit 926a2d4756
4 changed files with 12 additions and 3 deletions

View file

@ -51,7 +51,7 @@ const tabBarScreenOptions = ({
headerShown: false,
tabBarIcon: (_state: {focused: boolean; color: string; size: number}) => {
// TODO: icons
return <Text>{route.name.at(0)}</Text>
return <Text>{route.name?.[0] || ''}</Text>
},
})