From c12820f569404635bdbffc11a8f1ce726d702e42 Mon Sep 17 00:00:00 2001 From: Matan Shukry Date: Wed, 26 Jun 2019 20:11:03 +0300 Subject: [PATCH] Commented in a snackbar message --- lib/user_page.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/user_page.dart b/lib/user_page.dart index 0c77bd2..9d0577a 100644 --- a/lib/user_page.dart +++ b/lib/user_page.dart @@ -43,9 +43,9 @@ class _UserPageState extends State { bloc: _userBloc, listener: (BuildContext context, UserState state) { if (state is UserStateLoaded) { -// Scaffold.of(context).showSnackBar(SnackBar( -// content: Text("Loaded user ${state.info.name} successfully!"), -// )); + Scaffold.of(context).showSnackBar(SnackBar( + content: Text("Loaded user ${state.info.name} successfully!"), + )); } }, child: BlocBuilder(