ammarahm-ed / react-native-actions-sheet

A Cross Platform(Android, iOS & Web) ActionSheet with a flexible api, native performance and zero dependency code for react native. Create anything you want inside ActionSheet.
https://rnas.vercel.app
MIT License
1.49k stars 121 forks source link

WebView not working #349

Open mezalejandro opened 6 months ago

mezalejandro commented 6 months ago

Hello, i can display a webview inside a bottom-sheet

<ActionSheet id={props.sheetId} containerStyle={{ maxHeight: '100%', height: '100%', backgroundColor: '#191919', }} gestureEnabled isModal={true} indicatorStyle={{width: 100, backgroundColor: '#fff'}} withNestedSheetProvider headerAlwaysVisible enableGesturesInScrollView> <View style={{flex: 1}}> <WebView source={{uri: url}} style={{width: '100%', height: '90%'}} /> </View> </ActionSheet>

Thanks!