Open faustoct1 opened 4 months ago
Have you found any solution to this?
Should be same problem https://github.com/callstack/react-native-pager-view/issues/837 Style not passed on Android
Manually pass style should help
Try to replace
<View key={i} collapsable={false}>
by
<View key={i} collapsable={false} style={{ flex: 1 }}>
This snippet of code is not working on Android (but it works perfectly on iOS).
Appreciate any help on this.