Skip to content

Instantly share code, notes, and snippets.

@melihmucuk
Created July 5, 2015 22:35
Show Gist options
  • Save melihmucuk/5a7c43a787b99876d2ce to your computer and use it in GitHub Desktop.
Save melihmucuk/5a7c43a787b99876d2ce to your computer and use it in GitHub Desktop.
React Native Listview Style
var styles = StyleSheet.create({
container: {
flex: 1,
flexDirection: 'row',
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#ecf0f1',
},
rightContainer: {
flex: 1,
},
title: {
fontSize: 20,
marginBottom: 8,
textAlign: 'center',
},
hunter: {
textAlign: 'center',
color: 'red',
},
thumbnail: {
width: 120,
height: 120,
},
mainView: {
paddingTop: 50,
backgroundColor: '#3498db',
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment