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 99f8f3f commit 48e50f2Copy full SHA for 48e50f2
src/Container.tsx
@@ -436,7 +436,7 @@ export const Container = React.memo(
436
>
437
{tabNamesArray.map((tabName, i) => {
438
return (
439
- <View key={i} style={{ height: '100%', width: '100%' }}>
+ <View key={i} style={styles.pageContainer}>
440
<TabNameContext.Provider value={tabName}>
441
<Lazy
442
startMounted={lazy ? undefined : true}
@@ -466,6 +466,10 @@ const styles = StyleSheet.create({
466
container: {
467
flex: 1,
468
},
469
+ pageContainer: {
470
+ height: '100%',
471
+ width: '100%',
472
+ },
473
topContainer: {
474
position: 'absolute',
475
zIndex: 100,
0 commit comments