Live video on the AT Protocol
1import { zero } from "@streamplace/components";
2import { ActivityIndicator, View } from "react-native";
3
4export default function () {
5 return (
6 <View
7 style={[
8 zero.flex.values[1],
9 { justifyContent: "center", alignItems: "center" },
10 ]}
11 >
12 <Spinner />
13 </View>
14 );
15}
16
17export function Spinner() {
18 return <ActivityIndicator size="large" color={zero.colors.primary[500]} />;
19}