2019-07-18 17:44:02 +00:00
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
|
|
|
|
import sharedStyles from '../Styles';
|
|
|
|
|
|
|
|
export default StyleSheet.create({
|
|
|
|
container: {
|
2019-12-04 16:39:53 +00:00
|
|
|
flex: 1
|
2019-07-18 17:44:02 +00:00
|
|
|
},
|
|
|
|
input: {
|
|
|
|
fontSize: 16,
|
2019-12-04 16:39:53 +00:00
|
|
|
...sharedStyles.textRegular
|
|
|
|
},
|
|
|
|
inputContainer: {
|
|
|
|
marginBottom: 0
|
|
|
|
},
|
2019-07-18 17:44:02 +00:00
|
|
|
textInput: {
|
2019-12-04 16:39:53 +00:00
|
|
|
height: '100%'
|
2019-07-18 17:44:02 +00:00
|
|
|
},
|
2020-06-26 20:22:56 +00:00
|
|
|
centered: {
|
|
|
|
justifyContent: 'center',
|
|
|
|
alignItems: 'center'
|
2019-07-18 17:44:02 +00:00
|
|
|
},
|
2020-06-26 20:22:56 +00:00
|
|
|
title: {
|
|
|
|
fontSize: 18,
|
|
|
|
...sharedStyles.textBold,
|
|
|
|
...sharedStyles.textAlignCenter
|
2019-07-18 17:44:02 +00:00
|
|
|
},
|
|
|
|
send: {
|
|
|
|
...sharedStyles.textSemibold,
|
|
|
|
fontSize: 16
|
|
|
|
}
|
|
|
|
});
|