Karlo Verde
Karlo Verde
Bump ππΌ
Definitely gonna check this out and try to post a PR. BTW, thanks for the package! I was about to create one with just similar capabilities! π
Hey, @aardjon ππΌ Have you tried with this? ```sh test: run: > melos exec --no-flutter --dir-exists=test dart test && melos exec --flutter --dir-exists=test flutter test ```
Hey, @ysavr ππΌ The `FLUTTER_TARGET` variable is automatically generated by the Flutter tool when the app is built (which means it is dynamically updated). Its value can be found within...
Unfortunately, the way Flutter works for iOS does not allow devs to run a project directly from Xcode. As I mentioned before, there are some variables that are generated by...
@Milad-Akarie access to the `BuildContext` from an `AutoRouteGuard` would be quite handy for cases when the guard needs to access an instance that was lazy-injected through the `BuildContext` in a...
+1 as this is a feature that is actually useful for several use cases
As a more flexible option, it would be great to have a `migrate` method to be overridden and that can access the old and new version. ```dart class MyHydratedBloc extends...
What do the introduced changes actually imply? Looks like there is no effective updates on the codebase behaviour. Is the use of `SynchronousFuture` the root of the reported issue? If...
> The problem is that it immediately returns false and doesn't try to pop the parent navigator when child navigator is null Makes sense. Apologies for the confusion here. ---...