stage 2: skeleton with navigation
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user