Skip to content

Instantly share code, notes, and snippets.

@janicduplessis
Last active March 6, 2017 03:08
Show Gist options
  • Save janicduplessis/5f910588b9ea3e8b033f592cc58307ff to your computer and use it in GitHub Desktop.
Save janicduplessis/5f910588b9ea3e8b033f592cc58307ff to your computer and use it in GitHub Desktop.
[...]
const NAVBAR_HEIGHT = 64;
const STATUS_BAR_HEIGHT = Platform.select({ ios: 20, android: 24 });
class App extends Component {
[...]
render() {
return (
<View style={styles.fill}>
<ListView
contentContainerStyle={styles.contentContainer}
dataSource={this.state.dataSource}
renderRow={this._renderRow}
/>
<View style={styles.navbar}>
<Text style={styles.title}>
PLACES
</Text>
</View>
</View>
);
}
}
const styles = StyleSheet.create({
navbar: {
position: 'absolute',
top: 0,
left: 0,
right: 0,
alignItems: 'center',
backgroundColor: 'white',
borderBottomColor: '#dedede',
borderBottomWidth: 1,
height: NAVBAR_HEIGHT,
justifyContent: 'center',
paddingTop: STATUS_BAR_HEIGHT,
},
contentContainer: {
paddingTop: NAVBAR_HEIGHT,
},
[...]
});
[...]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment