sfm-uikit-react-native
Version:
It is a react native component for SmartFloMeet users.
57 lines (56 loc) • 1.34 kB
JavaScript
import { StyleSheet } from 'react-native';
const styles = StyleSheet.create({
modalOverlay: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: 'rgba(0, 0, 0, 0.5)',
},
dialogContainer: {
width: '80%',
backgroundColor: 'white',
borderRadius: 10,
padding: 20,
elevation: 5,
},
textInput: {
height: 100,
borderColor: '#cccccc',
borderWidth: 1,
borderRadius: 5,
paddingHorizontal: 10,
marginBottom: 15,
textAlignVertical: 'top',
},
checkboxContainer: {
flexDirection: 'row',
alignItems: 'center',
marginBottom: 20,
},
checkboxLabel: {
marginLeft: 8,
},
buttonContainer: {
flexDirection: 'row',
justifyContent: 'space-between',
},
cancelButton: {
backgroundColor: '#cccccc',
paddingVertical: 10,
paddingHorizontal: 20,
borderRadius: 5,
},
cancelButtonText: {
color: 'black',
},
sendButton: {
backgroundColor: '#ff0066',
paddingVertical: 10,
paddingHorizontal: 20,
borderRadius: 5,
},
sendButtonText: {
color: 'white',
},
});
export { styles }