Maxim Gasai
Maxim Gasai
Have you tried this configuration? ```dart AlchemistConfig.runWithConfig( config: const AlchemistConfig( platformGoldensConfig: PlatformGoldensConfig( enabled: false. ), ), run: testMain, ) ```
Thank you for this PR, I got my hands on to it and my testing showed that global search is much more reliable now. However I found one edge case...
Thanks for your response. I agree that removing caching completely is not a solution. For now we found a workaround - for every request we add or subtract a few...
Removed arm64 binary, resolved merge conflicts
Thank you for your response. I have somehow missed `authenticationValidityDurationSeconds` parameter, otherwise I would not face my issue. Right now, as a workaround, we are storing token in secure storage...
For this case your route structure might look like this: ```dart @AutoRouterConfig() class AppRouter extends $AppRouter { @override List get routes => [ AutoRoute( path: '/', page: RootRoute.page, initial: true,...