darioielardi / flutter_speed_dial

Flutter plugin to implement a Material Design Speed Dial
https://pub.dev/packages/flutter_speed_dial
MIT License
410 stars 177 forks source link

While using SpeedDial can't use Get.to() popGesture #322

Open abhinavsinghring opened 8 months ago

abhinavsinghring commented 8 months ago
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

abhinavsinghring commented 8 months ago

@darioielardi @prateekmedia

abhinavsinghring commented 6 months ago

@bobekos