Skip to content

Commit

Permalink
fix: tabs not being displayed on Android
Browse files Browse the repository at this point in the history
This should fix #411
  • Loading branch information
maherzaidoune authored Oct 3, 2024
1 parent 88000cc commit 559ae22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Container.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ export const Container = React.memo(
>
{tabNamesArray.map((tabName, i) => {
return (
<View key={i}>
<View key={i} style={{ height: '100%', width: '100%' }}>
<TabNameContext.Provider value={tabName}>
<Lazy
startMounted={lazy ? undefined : true}
Expand Down

0 comments on commit 559ae22

Please sign in to comment.