Skip to content

Instantly share code, notes, and snippets.

@tobob
Created December 18, 2019 10:53
Show Gist options
  • Save tobob/54d735a8761b6e2d7dc6ff0b680c9a57 to your computer and use it in GitHub Desktop.
Save tobob/54d735a8761b6e2d7dc6ff0b680c9a57 to your computer and use it in GitHub Desktop.
const styles = StyleSheet.create({
toast: {
borderRadius: 4,
marginHorizontal: 16,
padding: 4,
position: 'absolute',
top: 0,
zIndex: 2,
right: 0,
left: 0,
backgroundColor: '#ff3f3f',
},
content: {
alignItems: 'center',
flexDirection: 'row',
justifyContent: 'center',
minHeight: 32,
width: '100%',
},
toastMessage: {
color: '#fff',
fontWeight: '600',
fontSize: 12,
letterSpacing: 0.26,
marginHorizontal: 10,
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment