Organize files and add style to tabs
This commit is contained in:
parent
9cf377b199
commit
aca18970fa
4 changed files with 124 additions and 61 deletions
42
stylesheets/style.js
Normal file
42
stylesheets/style.js
Normal file
|
@ -0,0 +1,42 @@
|
|||
import * as React from 'react'
|
||||
import {StyleSheet} from 'react-native'
|
||||
export default StyleSheet.create({
|
||||
Container: {
|
||||
flex: 1,
|
||||
position: 'relative'
|
||||
},
|
||||
AddButton: {
|
||||
position: 'absolute',
|
||||
color: 'white',
|
||||
backgroundColor: '#202020',
|
||||
right: 0,
|
||||
height: 36,
|
||||
width: 36,
|
||||
fontSize: 18,
|
||||
display: 'flex',
|
||||
textAlign: 'center',
|
||||
textAlignVertical: "center",
|
||||
borderRadius: 50,
|
||||
marginTop: 6,
|
||||
marginRight: 12
|
||||
},
|
||||
RemoveButton: {
|
||||
position: 'absolute',
|
||||
color: 'white',
|
||||
backgroundColor: '#202020',
|
||||
right: 0,
|
||||
height: 36,
|
||||
width: 36,
|
||||
fontSize: 18,
|
||||
display: 'flex',
|
||||
textAlign: 'center',
|
||||
textAlignVertical: "center",
|
||||
borderRadius: 50,
|
||||
marginTop: 4,
|
||||
marginRight: 80
|
||||
},
|
||||
Tab: {
|
||||
display: 'flex',
|
||||
backgroundColor: 'black'
|
||||
}
|
||||
})
|
Reference in a new issue