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

17 lines
266 B
JavaScript
Raw Normal View History

2019-06-25 22:20:24 +02:00
// @flow
import variable from "./../variables/platform";
export default (variables /*: * */ = variable) => {
const pickerTheme = {
".note": {
color: "#8F8E95"
},
// width: 90,
marginRight: -4,
flexGrow: 1
};
return pickerTheme;
};