import { StyleSheet } from 'react-native';

import { ApplicationStyles, Metrics, Colors } from '../../shared/themes';

export default StyleSheet.create({
  ...ApplicationStyles.screen,
  row: {
    marginVertical: 1,
    justifyContent: 'center',
  },
  boldLabel: {
    fontWeight: 'bold',
    alignSelf: 'center',
    textAlign: 'center',
    marginBottom: Metrics.smallMargin,
  },
  messageInput: {
    flex: 1,
    padding: 10,
    backgroundColor: Colors.white,
  },
  inputContainer: {
    flexDirection: 'row',
    paddingBottom: 20,
  },
});
