react-native-nitro-in-app-browser
Version:
11 lines (8 loc) • 384 B
text/typescript
export type NitroInAppBrowserDismissButtonLabel = 'cancel' | 'done' | 'close'
export type NitroInAppBrowserPresentationStyle = 'pageSheet' | 'formSheet' | 'fullScreen'
export interface NitroInAppBrowserOptions {
dismissButtonLabel?: NitroInAppBrowserDismissButtonLabel
presentationStyle?: NitroInAppBrowserPresentationStyle
barColor?: string
controlColor?: string
}