We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efd3498 commit 5e22f27Copy full SHA for 5e22f27
twitter-example/index.js
@@ -19,6 +19,10 @@ const styles = StyleSheet.create({
19
},
20
});
21
22
+const statusBarProps = {
23
+ backgroundColor: '#1b6298',
24
+};
25
+
26
export default class TwitterApp extends React.Component {
27
render() {
28
return (
@@ -27,6 +31,7 @@ export default class TwitterApp extends React.Component {
31
headerStyle={styles.header}
32
backButtonComponent={BackButton}
29
33
rightCorner={SearchAndCompose}
34
+ statusBarProps={statusBarProps}
30
35
/>
36
);
37
}
0 commit comments