feat: Preferences view layout on mobile has been updated, and can be dismissed by swiping from the right

This commit is contained in:
Aman Harwara
2023-05-17 19:42:08 +05:30
parent 7b44224314
commit e5c580deab
18 changed files with 114 additions and 79 deletions

View File

@@ -47,7 +47,11 @@ const PreferencesViewWrapper: FunctionComponent<PreferencesViewWrapperProps> = (
})
return (
<ModalOverlay isOpen={viewControllerManager.preferencesController.isOpen} ref={setElement}>
<ModalOverlay
isOpen={viewControllerManager.preferencesController.isOpen}
ref={setElement}
animationVariant="horizontal"
>
<PreferencesView
closePreferences={viewControllerManager.preferencesController.closePreferences}
application={application}