digicard-react-native-material-buttons
Version:
Material buttons. Fixed to RN 0.64
25 lines (20 loc) • 441 B
JavaScript
import { StyleSheet, Platform } from 'react-native';
const styles = StyleSheet.create({
container: {
height: 36,
minWidth: 88,
paddingHorizontal: 16,
...Platform.select({
ios: {
shadowRadius: 2,
shadowColor: 'rgba(0, 0, 0, 1)',
shadowOpacity: 0.54,
shadowOffset: { width: 0, height: 2 },
},
android: {
elevation: 2,
},
}),
},
});
export { styles };