import React from 'react';
import { Modal, Button, Input, VStack, Text, FormControl } from 'native-base';
export function Example() {
const [modalVisible, setModalVisible] = React.useState(false);
return (
<>
setModalVisible(false)}
avoidKeyboard
justifyContent="flex-end"
bottom="4"
size="lg"
>
Forgot Password?
Enter email address and we'll send a link to reset your password.
Email
Open modal and focus on the input element to see the effect.
>
);
}