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 04746c7 commit e1a54b5Copy full SHA for e1a54b5
KeychainExample/src/App.tsx
@@ -253,8 +253,8 @@ export default function App() {
253
/>
254
<Text style={styles.label}>Storage</Text>
255
<SegmentedControlTab
256
- tabTextStyle={{ fontSize: 12 }}
257
- tabStyle={{ padding: 5, flex: 0 }}
+ tabTextStyle={styles.tabText}
+ tabStyle={styles.tab}
258
selectedIndex={selectedStorageIndex}
259
values={SECURITY_STORAGE_OPTIONS}
260
onTabPress={(index) => {
@@ -364,4 +364,11 @@ const styles = StyleSheet.create({
364
paddingHorizontal: 16,
365
paddingVertical: 8,
366
},
367
+ tabText: {
368
+ fontSize: 12,
369
+ },
370
+ tab: {
371
+ padding: 5,
372
+ flex: 0,
373
374
});
0 commit comments