application-amicale/native-base-theme/components/Picker.android.js

15 lines
188 B
JavaScript
Raw Normal View History

2019-06-25 22:20:24 +02:00
// @flow
2020-01-28 20:07:21 +01:00
export default () => {
2019-06-25 22:20:24 +02:00
const pickerTheme = {
2020-01-28 20:07:21 +01:00
'.note': {
color: '#8F8E95'
2019-06-25 22:20:24 +02:00
},
// width: 90,
marginRight: -4,
flexGrow: 1
};
return pickerTheme;
};