Live video on the AT Protocol
1import { Dashboard, zero } from "@streamplace/components";
2import { useLiveUser } from "hooks/useLiveUser";
3import { View } from "react-native";
4
5const { layout, p, flex } = zero;
6
7export default function InfoWidgetEmbed() {
8 const isLive = useLiveUser();
9 return (
10 <View
11 style={[
12 flex.values[1],
13 layout.flex.alignCenter,
14 layout.flex.justifyCenter,
15 p[4],
16 {
17 backgroundColor: "transparent",
18 minHeight: "100vh",
19 width: "100vw",
20 },
21 ]}
22 >
23 <Dashboard.InformationWidget embedMode={true} />
24 </View>
25 );
26}