nooralibutt / easy-wallpapers

This package is used for integrate wallpapers in the app and provide customizations in the wallpapers.
https://pub.dev/packages/easy_wallpapers
BSD 3-Clause "New" or "Revised" License
2 stars 1 forks source link

Swipe to close wallpaper screen #6

Open nooralibutt opened 1 year ago

nooralibutt commented 1 year ago

Right now opening a wallpaper redirects to next screen in push manner, we need to implement swipe to close.

alibahadar730 commented 1 year ago

Swipe to close the wallpapers use this flutter widget

Dismissible( direction: DismissDirection.vertical, key: const Key('key'), onDismissed: (_) => Navigator.of(context).pop(), child:,)