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> {
29
29
void timer () async {
30
30
Future .delayed (Duration (seconds: 1 )).then ((_) {
31
31
var state = Provider .of <AuthState >(context, listen: false );
32
- state.authStatus = AuthStatus .NOT_DETERMINED ;
32
+ // state.authStatus = AuthStatus.NOT_DETERMINED;
33
33
state.getCurrentUser ();
34
34
});
35
35
}
Original file line number Diff line number Diff line change @@ -211,6 +211,7 @@ class AuthState extends AppState {
211
211
} else {
212
212
authStatus = AuthStatus .NOT_LOGGED_IN ;
213
213
}
214
+ loading = false ;
214
215
return user;
215
216
} catch (error) {
216
217
loading = false ;
You can’t perform that action at this time.
0 commit comments