Skip to content

Commit 79a3496

Browse files
committed
Merge branch 'main' into release
2 parents 24b67e5 + 59d32a1 commit 79a3496

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+1003
-1204
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,5 +105,5 @@ jobs:
105105
uses: ncipollo/release-action@v1
106106
with:
107107
artifacts: "build/app/outputs/flutter-apk/app-release.apk,build/app/outputs/bundle/release/app-release.aab,build/ios_build.tar.gz"
108-
tag: v${{ env.VERSION }}
108+
tag: v${{ env.VERSION }}-${{ github.run_number }}
109109
token: ${{ secrets.GITHUB_TOKEN }}

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Ahmad Juhdi
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 72 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,72 @@
1-
![CI/CD Status](https://github.com/sh4dowByte/flutter_ui_meditation_app/actions/workflows/main.yaml/badge.svg?branch=release)
1+
![1732238804004](image/README/1732238804004.png)
2+
3+
<p align="center">
4+
<img src="https://github.com/sh4dowByte/flutter_ui_meditation_app/actions/workflows/main.yaml/badge.svg?branch=release" alt="CI/CD Badge" style="max-width: 100%;">
5+
<img src="https://badgen.net/badge/Flutter/3.19.3/blue" alt="Flutter Version" style="max-width: 100%;">
6+
<img src="https://badgen.net/badge/Dart/3.3.1/blue" alt="Dart Version" style="max-width: 100%;">
7+
</p>
8+
9+
# Flutter Meditation App UI
10+
11+
Flutter Meditation App UI is a mobile application built using Flutter. This project is a result of slicing a design created in Figma, with a focus on a modern and responsive user interface to deliver an optimal user experience.
12+
13+
## 🎨 Design
14+
15+
The design of this application is based on the provided Figma file. The slicing process was carried out meticulously to ensure the application accurately represents the design.
16+
17+
Source: [Figma File by Afsar](https://www.figma.com/community/file/882888114457713282)
18+
19+
## 🚀 Feature
20+
21+
- **Responsive Design**: Supports various screen sizes with responsive UI elements.
22+
- **Dark & Light Theme**: Provides both dark and light modes for a more comfortable user experience.
23+
- **Seamless Navigation**: Implements navigation using Flutter Navigator.
24+
- **Reusable Components**: Modular components for easier development and maintenance.
25+
26+
## 🛠️ Technologies
27+
28+
This project is built using the following technologies:
29+
30+
- **[Flutter](https://flutter.dev/)**: A framework for cross-platform application development.
31+
- **[Dart](https://dart.dev/)**: The primary programming language for Flutter.
32+
- **[Google Fonts](https://fonts.google.com/)**: For custom font integration.
33+
- **[Figma](https://www.figma.com/)**: Used as the application's design reference.
34+
35+
## 📂 Folder Structure
36+
37+
```plaintext
38+
.
39+
├── assets/ # Contains images, icons, and other assets
40+
├── lib/
41+
│ ├── config/ # Application configuration (theme, routes, etc.)
42+
│ ├── screens/ # Main application pages
43+
│ ├── widgets/ # Reusable UI components
44+
│ ├── main.dart # Main application file
45+
└── pubspec.yaml # Flutter project configuration
46+
```
47+
48+
## 🖼️ Screenshot
49+
50+
| Light Theme | Dark Theme |
51+
| ---------------------------------------------- | ---------------------------------------------- |
52+
| ![1732241085925](image/README/1732241085925.png) | ![1732241100825](image/README/1732241100825.png) |
53+
| ![1732241122045](image/README/1732241122045.png) | ![1732241133063](image/README/1732241133063.png) |
54+
| ![1732241182432](image/README/1732241182432.png) | ![1732241157948](image/README/1732241157948.png) |
55+
| ![1732241261429](image/README/1732241261429.png) | ![1732241276823](image/README/1732241276823.png) |
56+
| ![1732241302644](image/README/1732241302644.png) | ![1732241310724](image/README/1732241310724.png) |
57+
| ![1732241336281](image/README/1732241336281.png) | ![1732241346255](image/README/1732241346255.png) |
58+
| ![1732241369862](image/README/1732241369862.png) | ![1732241377837](image/README/1732241377837.png) |
59+
| ![1732241400524](image/README/1732241400524.png) | ![1732241408029](image/README/1732241408029.png) |
60+
| ![1732241447284](image/README/1732241447284.png) | ![1732241456381](image/README/1732241456381.png) |
61+
| ![1732241486817](image/README/1732241486817.png) | ![1732241493837](image/README/1732241493837.png) |
62+
| ![1732241530156](image/README/1732241530156.png) | ![1732241537356](image/README/1732241537356.png) |
63+
| ![1732241556240](image/README/1732241556240.png) | ![1732241564682](image/README/1732241564682.png) |
64+
| ![1732241576575](image/README/1732241576575.png) | ![1732241587538](image/README/1732241587538.png) |
65+
66+
## 📝 License
67+
68+
This project is licensed under the [MIT License](LICENSE).
69+
70+
---
71+
72+
🎉 **Happy developing!** If you have any questions, feel free to reach out to us.

cookie.txt

Lines changed: 0 additions & 15 deletions
This file was deleted.

cookie_backup.txt

Lines changed: 0 additions & 13 deletions
This file was deleted.

image/README/1732238804004.png

1.44 MB
Loading

image/README/1732241085925.png

187 KB
Loading

image/README/1732241100825.png

187 KB
Loading

image/README/1732241122045.png

171 KB
Loading

image/README/1732241133063.png

171 KB
Loading

0 commit comments

Comments
 (0)