UNPKG

@exodus/react-native-prompt-android

Version:
13 lines (11 loc) 329 B
import { AlertIOS } from 'react-native'; export default function prompt( title: ?string, message?: ?string, callbackOrButtons?: ?((text: string) => void) | Object, options?: Object ): void { AlertIOS.prompt(title, message, callbackOrButtons, options.type, options.defaultValue, options.keyboardType); };