stage 2: skeleton with navigation

This commit is contained in:
talksik
2026-04-29 11:05:21 -07:00
parent 06918f033d
commit cd1837c5f1
16 changed files with 1191 additions and 422 deletions
@@ -0,0 +1,17 @@
import { Pressable, Text, View } from "react-native";
import type { RootStackScreenProps } from "@/navigation/types";
export function StreamViewScreen({
navigation,
}: RootStackScreenProps<"StreamView">) {
return (
<View className="flex-1 bg-black items-center justify-center">
<Text className="text-white text-base">
Stream view coming in step 4.
</Text>
<Pressable onPress={() => navigation.goBack()} className="mt-6 px-4 py-2">
<Text className="text-white/70">Close</Text>
</Pressable>
</View>
);
}