Skip to content

Commit

Permalink
Merge pull request #19 from tiwaojo/dev
Browse files Browse the repository at this point in the history
Setup for release v1.0.0
  • Loading branch information
tiwaojo authored Dec 3, 2022
2 parents 970f764 + e8d80b8 commit 96a80ce
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
Binary file added assets/images/calsync-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 7 additions & 7 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,8 @@ class _SignInPageState extends State<SignInPage> {
: LinearProgressIndicator();
},
)
: Image.network(
"https://thecaninebuddy.com/ezoimgfmt/i0.wp.com/thecaninebuddy.com/wp-content/uploads/2021/08/crying-cat-meme.jpg?resize=1320%2C743&ssl=1&ezimgfmt=ngcb1/notWebP",
: Image.asset(
"assets/images/calsync-image.png",
// crying cat
// "https://cdn3.emoji.gg/emojis/8825_cough.png", // coughing cat
height: 100,
Expand All @@ -186,11 +186,11 @@ class _SignInPageState extends State<SignInPage> {
fit: BoxFit.contain,
semanticLabel: "userImage",
width: 200,
loadingBuilder: (context, child, progress) {
return progress == null
? child
: LinearProgressIndicator();
},
// loadingBuilder: (context, child, progress) {
// return progress == null
// ? child
// : LinearProgressIndicator();
// },
),
),
ElevatedButton(
Expand Down
10 changes: 7 additions & 3 deletions lib/views/onboarding.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,13 @@ class _OnBoardingState extends State<OnBoarding> {
controller: controller,
scrollDirection: Axis.horizontal,
children: [
onBoardPage(label: "Page 1"),
onBoardPage(label: "Page 2"),
onBoardPage(label: "Page 3"),
onBoardPage(label: "Page 1:\nSign in to your google account"),
onBoardPage(
label:
"Page 2:\n Go to settings and synchronize\ngoogle calendar events with the application "),
onBoardPage(
label:
"Page 3:\n Create and enjoy the events from \nboth google calendar and this application!"),
],
),
),
Expand Down
1 change: 1 addition & 0 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ flutter:
assets:
- client_secret.json
- client_secret-Web.json
- assets/images/calsync-image.png
# - client_secret-IOS.plist
# - images/a_dot_burr.jpeg
# - images/a_dot_ham.jpeg
Expand Down

0 comments on commit 96a80ce

Please sign in to comment.