initial home screen

This commit is contained in:
Boof2015
2026-06-19 15:21:35 -04:00
parent 48e1ff5a58
commit 96702ba7f0
9 changed files with 965 additions and 54 deletions
+3 -1
View File
@@ -32,9 +32,11 @@ interface TabBarProps {
*/
export function TabBar({ items, onPress }: TabBarProps) {
const insets = useSafeAreaInsets();
const homeFocused = items.some((item) => item.name === 'index' && item.focused);
return (
<View style={styles.wrap}>
<MiniPlayer />
{!homeFocused ? <MiniPlayer /> : null}
<View
style={[
styles.bar,