Created
July 31, 2019 18:50
-
-
Save Yassir4/e268b0bb635d988cf35f3333e4abf7d0 to your computer and use it in GitHub Desktop.
PushedScreen styles
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {StyleSheet} from 'react-native'; | |
const styles = StyleSheet.create({ | |
container: { | |
flex: 1, | |
alignItems: 'center', | |
justifyContent: 'center', | |
backgroundColor: 'skyblue', | |
}, | |
headerText: { | |
fontSize: 25, | |
color: '#222222', | |
marginBottom: 15, | |
}, | |
backButton: { | |
backgroundColor: '#FFFFFF', | |
paddingHorizontal: 10, | |
paddingVertical: 10, | |
}, | |
backButtonText: { | |
fontSize: 20, | |
color: '#222222', | |
}, | |
}); | |
export default styles; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment