fix dialog width and height on tablet

This commit is contained in:
ammarahm-ed
2020-10-04 09:46:50 +05:00
parent b4005314ff
commit a24185f71f
9 changed files with 26 additions and 25 deletions

View File

@@ -114,8 +114,8 @@ const MoveNoteDialog = () => {
<View
style={{
...getElevation(DDS.isTab ? 10 : 0),
width: DDS.isTab ? '65%' : '100%',
height: DDS.isTab ? '90%' : '100%',
width: DDS.isTab ? 500 : '100%',
height: DDS.isTab ? 500 : '100%',
flex: 1,
borderRadius: DDS.isTab ? 5 : 0,
backgroundColor: colors.bg,