From d6cec1e6c81548b69b4d05ff62c1fca434a52808 Mon Sep 17 00:00:00 2001 From: LukasMirbt Date: Sun, 21 Jul 2024 15:50:48 +0200 Subject: [PATCH] add initial event --- examples/flutter_login/lib/app.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/flutter_login/lib/app.dart b/examples/flutter_login/lib/app.dart index 0be06d2d847..ad04db2df31 100644 --- a/examples/flutter_login/lib/app.dart +++ b/examples/flutter_login/lib/app.dart @@ -39,7 +39,9 @@ class _AppState extends State { create: (_) => AuthenticationBloc( authenticationRepository: _authenticationRepository, userRepository: _userRepository, - ), + )..add( + AuthenticationSubscriptionRequested(), + ), child: const AppView(), ), );