Archived
1
Fork 0

Organize files and add style to tabs

This commit is contained in:
Korbs 2023-06-05 00:22:47 -04:00
parent 9cf377b199
commit aca18970fa
No known key found for this signature in database
4 changed files with 124 additions and 61 deletions

42
stylesheets/style.js Normal file
View 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'
}
})