Skip to content

Commit 30734d0

Browse files
committed
🔖 v1.0.3 Launch
:gug: Fix google login issue at first time app launch.
1 parent eb36198 commit 30734d0

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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.

lib/page/common/splash.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

lib/state/authState.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)