import React, { Component } from 'react';
import { AppRegistry, StyleSheet, Text, View, Image } from 'react-native';
import { getStatusBarHeight } from 'react-native-status-bar-height';
export default class LotsOfStyles extends Component {
render() {
return (
<View style={styles.top}>
<Text style={styles.red}>just red</Text>
</View>
);
}
}
const styles = StyleSheet.create({
top: {
paddingTop: getStatusBarHeight(),
}
});
// skip this line if using Create React Native App
AppRegistry.registerComponent('AwesomeProject', () => LotsOfStyles);
Last active
December 25, 2017 03:02
-
-
Save rayterrill/3a33efa480d8b02a65ae045cd30dffa4 to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment