We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d42509 commit 2328f20Copy full SHA for 2328f20
modules/filter/section-picker.tsx
@@ -1,5 +1,5 @@
1
import * as React from 'react'
2
-import {StyleSheet} from 'react-native'
+import {Platform, StyleSheet} from 'react-native'
3
import * as c from '@frogpond/colors'
4
import type {PickerType} from './types'
5
import {Section} from '@frogpond/tableview'
@@ -46,6 +46,10 @@ const styles = StyleSheet.create({
46
backgroundColor: c.secondarySystemBackground,
47
},
48
pickerItem: {
49
- color: c.label,
+ ...Platform.select({
50
+ ios: {
51
+ color: c.label,
52
+ },
53
+ }),
54
55
})
0 commit comments