Skip to content

Instantly share code, notes, and snippets.

@Necromant1k
Created January 2, 2018 19:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Necromant1k/bc46c3a50f6fc2c2ab7e0df630b1a86a to your computer and use it in GitHub Desktop.
Save Necromant1k/bc46c3a50f6fc2c2ab7e0df630b1a86a to your computer and use it in GitHub Desktop.
import {StyleSheet, Dimensions} from 'react-native';
export const styles = StyleSheet.create({
titleContainer: {
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'space-between',
flexDirection: 'row',
paddingLeft: 50,
paddingRight: 50,
paddingTop: 25,
paddingBottom: 25
},
title: {
color: '#000',
fontWeight: '900',
fontSize: 24
},
contentContainer: {
backgroundColor: '#f5f5f5'
},
content: {
fontSize: 16,
padding: 15
},
swiperContainer: {
position: 'absolute',
left: 0,
right: 0,
height: Dimensions.get('window').height * .675
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment