26 lines
554 B
JavaScript
26 lines
554 B
JavaScript
/**
|
|
* Project iLinkWorld
|
|
* File BaseStyle
|
|
* Path config
|
|
* Created by BRICE ZELE
|
|
* Date: 18/10/2021
|
|
*/
|
|
import {StyleSheet} from 'react-native';
|
|
import {Color} from "./Color";
|
|
|
|
export const BaseStyle = StyleSheet.create({
|
|
textInput: {
|
|
height: 46,
|
|
borderRadius: 5,
|
|
paddingHorizontal: 10,
|
|
width: '100%',
|
|
justifyContent: 'space-between',
|
|
alignItems: 'center',
|
|
flexDirection: 'row',
|
|
},
|
|
safeAreaView: {
|
|
flex: 1,
|
|
backgroundColor: Color.containerBackgroundColor
|
|
},
|
|
});
|