mitesh77 / Best-Flutter-UI-Templates

completely free for everyone. Its build-in Flutter Dart.
Other
20.2k stars 4.51k forks source link

Bug after open the custom drawer #12

Closed wassim6 closed 3 years ago

wassim6 commented 4 years ago

Describe the bug After open the custom drawer and return to the Home screen, all bouton will open the custom drawer. it work fine on the emulator.

To Reproduce Steps to reproduce the behavior:

  1. Open the custom drawer
  2. Close the drawer
  3. Click on Design Course
  4. See error, the custom drawer will be opened.

Expected behavior Go to the Design Course Screen.

Smartphone (please complete the following information):

eagerashwani commented 4 years ago

I'm also face this issue in Xiaomi K20 Pro

edTheGuy00 commented 4 years ago

@wassim6 So you take this entire project, sell it as a template on codecanyon.net then you have the balls to open up an issue about the issues your customers are facing? Seriously dude?

JoeyHengst commented 4 years ago

@wassim6 seriously dude?

edTheGuy00 commented 4 years ago

@JoeyHengst He already got banned from codecanyon.net Good lol

https://codecanyon.net/user/wassim6/portfolio

https://codecanyon.net/item/top-flutter-ui-templates

mitesh77 commented 4 years ago

please try again and check (this is a stable channel), (you can also re-clone project please and try)

VyankeshH commented 4 years ago

@mitesh77 Did you get any solution on this ?? I have same issue in My Xiaomi redmi note 7.

mitesh77 commented 4 years ago

@VyankeshH , I will solve as soon as

eagerashwani commented 4 years ago

Thanks @mitesh77

M9Apar commented 4 years ago

it is happening with all Mi Device running OS Android 9 and Up, tested with POCO F1, Redmi note 7 Pro

harrypatel07 commented 4 years ago

Hello guys,

Any update on this issue?

@mitesh77 Can you please update on the drawer issue?

FreezeSoul commented 4 years ago

I fixed the issues after added the following code widget.drawerWidth - scrollController.offset > 0.1

else if (scrollController.offset > 0 &&
            scrollController.offset < widget.drawerWidth &&
            widget.drawerWidth - scrollController.offset > 0.1) {
          iconAnimationController.animateTo(
              (scrollController.offset * 100 / (widget.drawerWidth)) / 100,
              duration: const Duration(milliseconds: 0),
              curve: Curves.linear);
 }