Skip to content

Commit

Permalink
final-login-fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ARYPROGRAMMER committed Oct 5, 2024
1 parent 4b82139 commit dd38ae3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ name: Build My Apps
jobs:
build:
name: Build and Release new apk
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -38,12 +39,13 @@ jobs:
uses: ncipollo/release-action@v1
with:
artifacts: "build/app/outputs/apk/release/*"
tag: v2.0.6
tag: v2.0.6.1
token: ${{ secrets.TOKEN }}
name: "stable-v2.0.6"
name: "stable-v2.0.6.1"
body: |
## What's New in v2.0.6
## What's New in v2.0.6.1
- **Patch** : LOGIN with Google fix
- **Fixed Performance and Responsiveness Issues and Improved UI.
- **New Feature**: Fast Login with Oauth2 independent of Firebase.
- **Bug Fixes**: Resolved major bugs pertaining to login & signup leaks & getting ready for syncfusion.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
### Known Issues are Resolved.


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

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,7 @@ class MeditationPage extends StatelessWidget {
),
actions: [
CircleAvatar(
backgroundImage: user1 != null
? user1.photoURL != null
? NetworkImage(user1.photoURL!)
: const NetworkImage(
"https://pbs.twimg.com/media/F3tVQbJWUAEOXJB.jpg:large")
: NetworkImage(user2!.photoUrl!),
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"),
),
const SizedBox(
width: 16,
Expand Down

0 comments on commit dd38ae3

Please sign in to comment.