1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

iOS: Fixed missing Confirm and Cancel buttons on Alarm dialog

This commit is contained in:
Laurent Cozic 2019-06-14 07:22:25 +01:00
parent 3fafda9684
commit 85091052e7

View File

@ -85,6 +85,14 @@ class SelectDateTimeDialog extends Component {
cancelBtnText={_('Cancel')}
onDateChange={(date) => { this.setState({ date: this.stringToDate(date) }); }}
style={{width:300}}
customStyles={{
btnConfirm: {
paddingVertical: 0,
},
btnCancel: {
paddingVertical: 0,
},
}}
/>
</View>
</PopupDialog>