Live video on the AT Protocol

show header title on non-ios

+10 -9
+10 -9
js/app/src/shell.tsx
··· 81 81 component={HomeScreen} 82 82 options={{ 83 83 title: "Streamplace", 84 - headerTitle: (props) => { 85 - return Platform.OS === "ios" ? ( 86 - <View style={{ flex: 1, alignItems: "flex-start" }}> 87 - <Text size="3xl" style={[zero.ml[4]]}> 88 - {title} 89 - </Text> 90 - </View> 91 - ) : undefined; 92 - }, 84 + headerTitle: 85 + Platform.OS === "ios" 86 + ? (props) => ( 87 + <View style={{ flex: 1, alignItems: "flex-start" }}> 88 + <Text size="3xl" style={[zero.ml[4]]}> 89 + {title} 90 + </Text> 91 + </View> 92 + ) 93 + : undefined, 93 94 headerLeft: 94 95 Platform.OS !== "ios" 95 96 ? ({ canGoBack }) => <NavigationButton canGoBack={canGoBack} />