react-native-form-sheet
Version:
A native dialog solution for React Native.
19 lines (13 loc) • 604 B
JavaScript
import { NativeModules, PixelRatio, Platform } from 'react-native'
const RNFormSheetManager = NativeModules.RNFormSheetManager || NativeModules.RNFormSheetModule
class FormSheet {
static present(options) {
if (Platform.OS == 'android') options.width = PixelRatio.getPixelSizeForLayoutSize(options.width)
if (Platform.OS == 'android') options.height = PixelRatio.getPixelSizeForLayoutSize(options.height)
RNFormSheetManager.present({...{ shouldDismissOnBackgroundViewTap: true }, ...options})
}
static dismiss() {
RNFormSheetManager.dismiss()
}
}
module.exports = FormSheet;