iaiao
iaiao
@pichillilorenzo Any update on this one?
This bug make the build failed on iOS. And this prevent using the library completely for us :-( The error is: Parse Issue (Xcode): Module 'flutter_facebook_auth' not found We are...
Any plan to support it?
@Milad-Akarie If you have a theme like this ``` final ThemeData myTheme = ThemeData( pageTransitionsTheme: const PageTransitionsTheme(builders: { TargetPlatform.iOS: CupertinoPageTransitionsBuilder(), TargetPlatform.android: FadeUpwardsPageTransitionsBuilder(), }), ) ``` If i'm using AutoRoute(page:xxxxxx) Back...
@Milad-Akarie : AdaptiveAutoRouter
@Milad-Akarie I wrap my Widget in a WillPopScope, doing some action and eventually calling `context.router.pop()` That's is doing the trick for Android, but that's why I'm focussing on the iOS...
@Milad-Akarie Good catch. Is this something you can do in the library while they fix the problem https://github.com/flutter/flutter/issues/14203#issuecomment-540663717
@BlueSkyTrent You can provide you own builder :-) just a portion of the code to show you how ``` AutoTabsScaffold( builder: (context, child, animation) => SlideTransition( position: Tween( begin: const...
@Milad-Akarie Would be cool if we can add the TabRouter as well in the builder, so we can do some logics depending on the index. I will provide a PR...
@Milad-Akarie : Any update on this? We have the same issue in our project. The route definition is not the same, but the structure is almost the same. After a...