File tree Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 1+ ## [ 1.0.0] - 22 Mar 2020
2+
3+ * Initials Launch
4+
5+ ## [ 1.0.1] - 27 Mar 2020
6+
7+ * Added Retweet functionality.
8+ * Show Retweet count on tweet.
9+
10+ ## [ 1.0.2] - 30 Mar 2020
11+
12+ * Added users list who liked tweet.
13+ * User can view nested profile view.
14+ * User can view their following and follower's profile.
15+ * Bug fix and performance improvement.
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ class _SplashPageState extends State<SplashPage> {
2929 void timer () async {
3030 Future .delayed (Duration (seconds: 1 )).then ((_) {
3131 var state = Provider .of <AuthState >(context, listen: false );
32- state.authStatus = AuthStatus .NOT_DETERMINED ;
32+ // state.authStatus = AuthStatus.NOT_DETERMINED;
3333 state.getCurrentUser ();
3434 });
3535 }
Original file line number Diff line number Diff line change @@ -211,6 +211,7 @@ class AuthState extends AppState {
211211 } else {
212212 authStatus = AuthStatus .NOT_LOGGED_IN ;
213213 }
214+ loading = false ;
214215 return user;
215216 } catch (error) {
216217 loading = false ;
You can’t perform that action at this time.
0 commit comments