tangled
alpha
login
or
join now
stream.place
/
streamplace
74
fork
atom
Live video on the AT Protocol
74
fork
atom
overview
issues
1
pulls
pipelines
show header title on non-ios
Natalie B.
5 days ago
2b229373
5a880cfd
+10
-9
1 changed file
expand all
collapse all
unified
split
js
app
src
shell.tsx
+10
-9
js/app/src/shell.tsx
···
81
81
component={HomeScreen}
82
82
options={{
83
83
title: "Streamplace",
84
84
-
headerTitle: (props) => {
85
85
-
return Platform.OS === "ios" ? (
86
86
-
<View style={{ flex: 1, alignItems: "flex-start" }}>
87
87
-
<Text size="3xl" style={[zero.ml[4]]}>
88
88
-
{title}
89
89
-
</Text>
90
90
-
</View>
91
91
-
) : undefined;
92
92
-
},
84
84
+
headerTitle:
85
85
+
Platform.OS === "ios"
86
86
+
? (props) => (
87
87
+
<View style={{ flex: 1, alignItems: "flex-start" }}>
88
88
+
<Text size="3xl" style={[zero.ml[4]]}>
89
89
+
{title}
90
90
+
</Text>
91
91
+
</View>
92
92
+
)
93
93
+
: undefined,
93
94
headerLeft:
94
95
Platform.OS !== "ios"
95
96
? ({ canGoBack }) => <NavigationButton canGoBack={canGoBack} />