Skip to content

Commit

Permalink
settings-ui-change-redis-3
Browse files Browse the repository at this point in the history
  • Loading branch information
ARYPROGRAMMER committed Oct 10, 2024
1 parent 49c2867 commit efafb0f
Show file tree
Hide file tree
Showing 7 changed files with 511 additions and 489 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,17 +60,16 @@ jobs:
uses: ncipollo/release-action@v1
with:
artifacts: "build/app/outputs/apk/release/*"
tag: v2.1.0
tag: v2.1.1
token: ${{ secrets.TOKEN }}
name: "beta-v2.1.0"
name: "beta-v2.1.1"
body: |
## What's New in v2.1.0
## What's New in v2.1.1
- **Settings Tab is now Better and Accessible**
- **Redis connection fixes and data privacy improvised**
- **Redis Cloud Implementation and Fetching in Beta Phase**
- **Structure of Redis added to Clean Architecture
- **Added Redis-base to support syncfusion**
- **Fixed Performance and Responsiveness Issues by Improvised BLoC Structure.
- **New Feature**: Implemented Syncfusion and Redis for low latency.
- **New Feature**: Implemented Syncfusion and Redis for low latency**
### Known Issues are Resolved - Redis Full-Integration Phase 2
### Known Issues are Resolved - Redis Full-Integration Phase 3
15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<a href="https://github.com/ARYPROGRAMMER/Mindful-App/actions">
<img src="https://github.com/travisjeffery/timecop/workflows/CI/badge.svg" alt="Build Status"/>
</a>
<img src="https://img.shields.io/badge/version-2.1.0-green" alt="Version"/>
<img src="https://img.shields.io/badge/version-2.1.1-green" alt="Version"/>
</p>

<p align="center">
Expand All @@ -17,20 +17,19 @@

**APP STATUS** : ALL CORE FUNCTIONALITIES WORKING (Deployed NodeJs & Postgresql on Render)

## What's New in v2.1.0 (Beta Phase for Redis) (Use Stable Version for Best Experience)
## What's New in v2.1.1 (Beta Phase for Redis) (Use Stable Version for Best Experience)

- **Settings Tab is now Better and Accessible**
- **Redis connection fixes and data privacy improvised**
- **Redis Cloud Implementation and Fetching in Beta Phase**
- **Structure of Redis added to Clean Architecture
- **Added Redis-base to support syncfusion**
- **Fixed Performance and Responsiveness Issues by Improvised BLoC Structure.
- **New Feature**: Implemented Syncfusion and Redis for low latency.
### Known Issues are Resolved - Redis Full-Integration Phase 2.
- **New Feature**: Implemented Syncfusion and Redis for low latency**

### Known Issues are Resolved - Redis Full-Integration Phase 3

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

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

[Blog Post on dev.to](https://dev.to/aryprogrammer/building-mindful-a-mental-wellness-app-with-nodejs-ai-and-clean-architecture-3n9d)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,72 @@ class upDate extends StatelessWidget {
User? user = FirebaseAuth.instance.currentUser;

return Scaffold(
appBar: AppBar(),
body: Column(
children: [
_fullnamefield(context),
_photofield(context),
ElevatedButton(
onPressed: () {
user!.updateDisplayName(_fullname.value.text.toString());
user.reload();
print(user);
},
child: Text("update name")),
ElevatedButton(
onPressed: () {
user!.updatePhotoURL(_photourl.value.text.toString());
user.reload();
},
child: Text("update pic link"))
],
appBar: AppBar(
centerTitle: true,
title: const Text(
"Profile Details Update",
style: TextStyle(color: Colors.black, fontSize: 23, fontFamily: 't3'),
),
),
body: Padding(
padding: const EdgeInsets.all(30.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
SizedBox(width: 350, child: _fullnamefield(context)),
const SizedBox(
height: 20,
),
SizedBox(width: 350, child: _photofield(context)),
const SizedBox(
height: 50,
),
SizedBox(
width: 350,
child: ElevatedButton(
style: ElevatedButton.styleFrom(
elevation: 7,
foregroundColor: Colors.white70,
shadowColor: Colors.black),
onPressed: () {
user!.updateDisplayName(_fullname.value.text.toString());
user.reload();
},
child: const Text(
"Update Name",
style: TextStyle(
fontFamily: 't3',
color: Colors.black,
fontSize: 20,
fontWeight: FontWeight.bold),
)),
),
const SizedBox(
height: 20,
),
SizedBox(
width: 350,
child: ElevatedButton(
style: ElevatedButton.styleFrom(
elevation: 7,
foregroundColor: Colors.white70,
shadowColor: Colors.black),
onPressed: () {
user!.updatePhotoURL(_photourl.value.text.toString());
user.reload();
},
child: Text(
"Update Pic Link",
style: const TextStyle(
fontFamily: 't3',
color: Colors.black,
fontSize: 20,
fontWeight: FontWeight.bold),
)),
)
],
),
),
);
}
Expand Down
32 changes: 32 additions & 0 deletions lib/features/meditation/presentation/pages/meditation_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,38 @@ class _MeditationPageState extends State<MeditationPage> {
}

SfCircularChart _buildCustomizedRadialBarChart() {
dataSources = <ChartSampleData>[
ChartSampleData(
x: 'Happy',
y: 0.20,
text: '10%',
pointColor: const Color.fromRGBO(69, 186, 161, 1.0)),
ChartSampleData(
x: 'Neutral',
y: 0.50,
text: '10%',
pointColor: const Color.fromRGBO(230, 135, 111, 1.0)),
ChartSampleData(
x: 'Sad',
y: 0.6,
text: '100%',
pointColor: const Color.fromRGBO(145, 132, 202, 1.0)),
ChartSampleData(
x: 'Calm',
y: 0.1,
text: '100%',
pointColor: const Color.fromRGBO(145, 132, 202, 1.0)),
ChartSampleData(
x: 'Relax',
y: 0.9,
text: '100%',
pointColor: const Color.fromRGBO(145, 132, 202, 1.0)),
ChartSampleData(
x: 'Focus',
y: 0.8,
text: '100%',
pointColor: const Color.fromRGBO(235, 96, 143, 1.0))
];
return SfCircularChart(
title: const ChartTitle(text: 'Scroll Sideways for details'),
legend: Legend(
Expand Down
Loading

0 comments on commit efafb0f

Please sign in to comment.