I am working on React Native application. I am using "react-native-dialog". I want to change the height and width of the dialog. I am unable to do it. My code is:
import Dialog from "react-native-dialog";
<Dialog.Container style={{height: "50%", width: "50%"}} visible={this.state.dialogVisible}>
<Dialog.Title>Edit Your Note</Dialog.Title>
<Dialog.Input multiline={true} onChangeText={(nm)=> this.setState({newNote: nm})}
value={this.state.newNote}></Dialog.Input>
<Dialog.Button label="Cancel" onPress={() => this.handleCancel(e.ans)} />
<Dialog.Button label="Save" onPress={() => this.handleSave(e.idx, e.ans)} />
</Dialog.Container>
I want to increase the height and width of the dialog so that i can increase the height and width of the "Dialog.Input". Currently my dialog looks like this:

