Skip to content

Commit dd38ae3

Browse files
committed
final-login-fixes
1 parent 4b82139 commit dd38ae3

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ name: Build My Apps
88
jobs:
99
build:
1010
name: Build and Release new apk
11+
if: "!contains(github.event.head_commit.message, '[skip ci]')"
1112
runs-on: ubuntu-latest
1213
steps:
1314
- uses: actions/checkout@v3
@@ -38,12 +39,13 @@ jobs:
3839
uses: ncipollo/release-action@v1
3940
with:
4041
artifacts: "build/app/outputs/apk/release/*"
41-
tag: v2.0.6
42+
tag: v2.0.6.1
4243
token: ${{ secrets.TOKEN }}
43-
name: "stable-v2.0.6"
44+
name: "stable-v2.0.6.1"
4445
body: |
45-
## What's New in v2.0.6
46+
## What's New in v2.0.6.1
4647
48+
- **Patch** : LOGIN with Google fix
4749
- **Fixed Performance and Responsiveness Issues and Improved UI.
4850
- **New Feature**: Fast Login with Oauth2 independent of Firebase.
4951
- **Bug Fixes**: Resolved major bugs pertaining to login & signup leaks & getting ready for syncfusion.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
### Known Issues are Resolved.
2424

2525

26-
[DEMO LINK OF WORKING]()
26+
[DEMO LINK OF WORKING](https://vimeo.com/1016496824?share=copy)
2727

2828
[PREPRODUCTION INSIDERS](https://vimeo.com/1013864504)
2929

lib/features/meditation/presentation/pages/meditation_page.dart

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,7 @@ class MeditationPage extends StatelessWidget {
3636
),
3737
actions: [
3838
CircleAvatar(
39-
backgroundImage: user1 != null
40-
? user1.photoURL != null
41-
? NetworkImage(user1.photoURL!)
42-
: const NetworkImage(
43-
"https://pbs.twimg.com/media/F3tVQbJWUAEOXJB.jpg:large")
44-
: NetworkImage(user2!.photoUrl!),
39+
backgroundImage: user1 != null? (user1.photoURL != null? NetworkImage(user1.photoURL!): const NetworkImage("https://pbs.twimg.com/media/F3tVQbJWUAEOXJB.jpg:large")): user2!.photoUrl!=null? NetworkImage(user2.photoUrl!): const NetworkImage("https://pbs.twimg.com/media/F3tVQbJWUAEOXJB.jpg:large"),
4540
),
4641
const SizedBox(
4742
width: 16,

0 commit comments

Comments
 (0)