shroot91

Results 7 comments of shroot91

> From pub.dev's [score page](https://pub.dev/packages/hydrated_bloc/score): > > Package not compatible with platform Web > Because: > > * `package:hydrated_bloc/hydrated_bloc.dart` that imports: > * `package:hydrated_bloc/src/hydrated_storage.dart` that imports: > * `dart:io` Some...

Any solution? I tested the package webview_flutter_web and it keep the issue.

Same issue here! but i have a redirect directive: ``` redirect: (context, state) { final userAutheticated = sessionCubit.state is Authenticated; if (userAutheticated) { if (state.subloc == '/login') return '/home'; if...

@wrteam-priyansh Yes! ``` redirect: (context, state) { /// we define the path and redirect directives /// see the logic redirect final bool userAutheticated = sessionCubit.state is Authenticated; final bool onloginPage...

> removed the dot from the start of file name resolve for me. from ".env" to "env" It worked ! Thanks a lot!