flutter_speed_dial
flutter_speed_dial copied to clipboard
While using SpeedDial can't use Get.to() popGesture
onPress: () async {
await Get.to(
() => const DownloadsPage(),
transition: Transition.cupertino,
duration: const Duration(milliseconds: 500),
popGesture: true,
gestureWidth: (context) {
double width =
MediaQuery.of(context).size.width;
return width;
}
},
And on the downloads page try to right swipe with and without SpeedDial
@darioielardi @prateekmedia
@bobekos