Tinh Huynh

Results 5 comments of Tinh Huynh

@sagar1garg @KamalPixi I run `flutter clean` and then `flutter pub get`, and the app can be built successfully. Please try if this works for you.

@sagar1garg Hi, I am not the library maintainer :)

Hi, I have the same problem and can't find an official solution besides downgrading Flutter to 3.3.10. Therefore, I came up with a workaround solution: If the app runs on...

@medyas ``` class CustomDrawer extends StatelessWidget { const CustomDrawer({Key? key, this.footer, this.backgroundColor = ColorName.gray2, required this.child, required this.drawer, required this.controller}) : super(key: key); final Color backgroundColor; final Widget? footer; final...

I have figured it out. You need to set the same value for `slideWidth` and `menuScreenWidth`. For ex: ``` slideWidth: MediaQuery.of(context).size.width * 0.65, menuScreenWidth: MediaQuery.of(context).size.width * 0.65, ```