-
Notifications
You must be signed in to change notification settings - Fork 2
project initialised with basic ui and auth #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,115 @@ | ||
| # GetWelPlus | ||
| # 🌱 GetWel+ | ||
| ### Mental Health & Wellness Mobile App (Flutter) | ||
|
|
||
| **GetWel+** is a comprehensive mental health and wellness mobile application built with **Flutter**, designed to reduce stigma around mental health and empower users to take proactive control of their well-being. | ||
|
|
||
| > ⚠️ **Disclaimer:** GetWel+ is not a diagnostic or medical tool. It is designed for awareness, reflection, and emotional support only. | ||
|
|
||
| --- | ||
|
|
||
| ## 🧠 Project Vision | ||
|
|
||
| Mental health tools should be: | ||
|
|
||
| - **Accessible** | ||
| - **Private** | ||
| - **Supportive** | ||
|
|
||
| GetWel+ aims to create a **safe digital space** where users can: | ||
|
|
||
| - Track emotions | ||
| - Assess stress levels | ||
| - Engage in calming activities | ||
| - Access guidance and resources | ||
|
|
||
| —all through a **clean, thoughtful, and human-centered UX**. | ||
|
|
||
| --- | ||
|
|
||
| ## ✨ Core Features | ||
|
|
||
| ### 🧠 Emotional & Mental Well-Being | ||
|
|
||
| #### Mood Tracking | ||
| - Log daily moods | ||
| - Visualize emotional patterns over time | ||
|
|
||
| #### Stress Assessment | ||
| Scientifically backed self-assessment tools, including: | ||
| - **DASS-21** (Depression, Anxiety & Stress Scale) | ||
| - **Perceived Stress Scale (PSS)** | ||
| - Mood-based self-assessments | ||
|
|
||
| --- | ||
|
|
||
| ### 🧘 Relaxation & Stress Relief | ||
|
|
||
| - **Guided Meditation** | ||
| - **Calm & Relaxing Music** | ||
| - **Stress-Relief Games** | ||
| Lightweight interactive experiences designed to reduce mental fatigue and promote relaxation. | ||
|
|
||
| --- | ||
|
|
||
| ### 🤝 Support & Community | ||
|
|
||
| - **Chatroom** | ||
| Community-based peer support space with moderation and safety in mind. | ||
|
|
||
| - **AI Chatbot** | ||
| An AI-powered mental health companion for: | ||
| - Emotional reflection | ||
| - Gentle guidance | ||
| - Supportive conversations | ||
|
|
||
| --- | ||
|
|
||
| ### 📊 Personalization & Insights | ||
|
|
||
| - **Personalized Wellness Plans** | ||
| Tailored recommendations based on user assessments and activity. | ||
|
|
||
| - **Progress Tracking & Streaks** | ||
| Encourage consistency and healthy habits over time. | ||
|
|
||
| --- | ||
|
|
||
| ### 📍 Real-World Support | ||
|
|
||
| - **Nearby Mental Health Centers** | ||
| Location-based discovery of mental health professionals and support services. | ||
|
|
||
| --- | ||
|
|
||
| ## 🔬 Advanced Features (Future Scope) | ||
|
|
||
| - **Image & Voice Analysis** | ||
| Optional, privacy-first stress detection using visual and audio cues (opt-in only). | ||
|
|
||
| - **Advanced Analytics & Insights** | ||
| Deeper understanding of emotional trends and wellness progress. | ||
|
|
||
| --- | ||
|
|
||
|
|
||
| ## 🌱 Philosophy | ||
|
|
||
| GetWel+ focuses on: | ||
| - Awareness, not diagnosis | ||
| - Support, not judgment | ||
| - Empowerment, not pressure | ||
|
|
||
| Mental health is a journey — GetWel+ is designed to walk alongside users, one step at a time. | ||
|
|
||
| --- | ||
|
|
||
| ## 📄 License | ||
|
|
||
| This project is licensed under the **MIT License** (or specify your license here). | ||
|
|
||
| --- | ||
|
|
||
| ## 💙 Contributing | ||
|
|
||
| Contributions, ideas, and feedback are welcome! | ||
| Please open an issue or submit a pull request to get involved. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| # Miscellaneous | ||
| *.class | ||
| *.log | ||
| *.pyc | ||
| *.swp | ||
| .DS_Store | ||
| .atom/ | ||
| .build/ | ||
| .buildlog/ | ||
| .history | ||
| .svn/ | ||
| .swiftpm/ | ||
| migrate_working_dir/ | ||
|
|
||
| # IntelliJ related | ||
| *.iml | ||
| *.ipr | ||
| *.iws | ||
| .idea/ | ||
|
|
||
| # The .vscode folder contains launch configuration and tasks you configure in | ||
| # VS Code which you may wish to be included in version control, so this line | ||
| # is commented out by default. | ||
| #.vscode/ | ||
|
|
||
| # Flutter/Dart/Pub related | ||
| **/doc/api/ | ||
| **/ios/Flutter/.last_build_id | ||
| .dart_tool/ | ||
| .flutter-plugins-dependencies | ||
| .pub-cache/ | ||
| .pub/ | ||
| /build/ | ||
| /coverage/ | ||
|
|
||
| # Symbolication related | ||
| app.*.symbols | ||
|
|
||
| # Obfuscation related | ||
| app.*.map.json | ||
|
|
||
| # Android Studio will place build artifacts here | ||
| /android/app/debug | ||
| /android/app/profile | ||
| /android/app/release | ||
|
|
||
| # Firebase config files | ||
| android/app/google-services.json | ||
| ios/Runner/GoogleService-Info.plist |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| # This file tracks properties of this Flutter project. | ||
| # Used by Flutter tool to assess capabilities and perform upgrades etc. | ||
| # | ||
| # This file should be version controlled and should not be manually edited. | ||
|
|
||
| version: | ||
| revision: "f6ff1529fd6d8af5f706051d9251ac9231c83407" | ||
| channel: "stable" | ||
|
|
||
| project_type: app | ||
|
|
||
| # Tracks metadata for the flutter migrate command | ||
| migration: | ||
| platforms: | ||
| - platform: root | ||
| create_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407 | ||
| base_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407 | ||
| - platform: android | ||
| create_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407 | ||
| base_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407 | ||
| - platform: ios | ||
| create_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407 | ||
| base_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407 | ||
| - platform: linux | ||
| create_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407 | ||
| base_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407 | ||
| - platform: macos | ||
| create_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407 | ||
| base_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407 | ||
| - platform: web | ||
| create_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407 | ||
| base_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407 | ||
| - platform: windows | ||
| create_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407 | ||
| base_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407 | ||
|
|
||
| # User provided section | ||
|
|
||
| # List of Local paths (relative to this file) that should be | ||
| # ignored by the migrate tool. | ||
| # | ||
| # Files that are not part of the templates will be ignored by default. | ||
| unmanaged_files: | ||
| - 'lib/main.dart' | ||
| - 'ios/Runner.xcodeproj/project.pbxproj' | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| # flutter_app | ||
|
|
||
| A new Flutter project. | ||
|
|
||
| ## Getting Started | ||
|
|
||
| This project is a starting point for a Flutter application. | ||
|
|
||
| A few resources to get you started if this is your first Flutter project: | ||
|
|
||
| - [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab) | ||
| - [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook) | ||
|
|
||
| For help getting started with Flutter development, view the | ||
| [online documentation](https://docs.flutter.dev/), which offers tutorials, | ||
| samples, guidance on mobile development, and a full API reference. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| # This file configures the analyzer, which statically analyzes Dart code to | ||
| # check for errors, warnings, and lints. | ||
| # | ||
| # The issues identified by the analyzer are surfaced in the UI of Dart-enabled | ||
| # IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be | ||
| # invoked from the command line by running `flutter analyze`. | ||
|
|
||
| # The following line activates a set of recommended lints for Flutter apps, | ||
| # packages, and plugins designed to encourage good coding practices. | ||
| include: package:flutter_lints/flutter.yaml | ||
|
|
||
| linter: | ||
| # The lint rules applied to this project can be customized in the | ||
| # section below to disable rules from the `package:flutter_lints/flutter.yaml` | ||
| # included above or to enable additional rules. A list of all available lints | ||
| # and their documentation is published at https://dart.dev/lints. | ||
| # | ||
| # Instead of disabling a lint rule for the entire project in the | ||
| # section below, it can also be suppressed for a single line of code | ||
| # or a specific dart file by using the `// ignore: name_of_lint` and | ||
| # `// ignore_for_file: name_of_lint` syntax on the line or in the file | ||
| # producing the lint. | ||
| rules: | ||
| # avoid_print: false # Uncomment to disable the `avoid_print` rule | ||
| # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule | ||
|
|
||
| # Additional information about this file can be found at | ||
| # https://dart.dev/guides/language/analysis-options |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| gradle-wrapper.jar | ||
| /.gradle | ||
| /captures/ | ||
| /gradlew | ||
| /gradlew.bat | ||
| /local.properties | ||
| GeneratedPluginRegistrant.java | ||
| .cxx/ | ||
|
|
||
| # Remember to never publicly share your keystore. | ||
| # See https://flutter.dev/to/reference-keystore | ||
| key.properties | ||
| **/*.keystore | ||
| **/*.jks |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| plugins { | ||
| id("com.android.application") | ||
| id("kotlin-android") | ||
| // Add the Google services Gradle plugin | ||
| id("com.google.gms.google-services") | ||
|
|
||
| // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins. | ||
| id("dev.flutter.flutter-gradle-plugin") | ||
| } | ||
|
|
||
| android { | ||
| namespace = "com.example.flutter_app" | ||
| compileSdk = flutter.compileSdkVersion | ||
| ndkVersion = flutter.ndkVersion | ||
|
|
||
| compileOptions { | ||
| sourceCompatibility = JavaVersion.VERSION_17 | ||
| targetCompatibility = JavaVersion.VERSION_17 | ||
| } | ||
|
|
||
| kotlinOptions { | ||
| jvmTarget = JavaVersion.VERSION_17.toString() | ||
| } | ||
|
|
||
| defaultConfig { | ||
| // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). | ||
| applicationId = "com.example.flutter_app" | ||
| // You can update the following values to match your application needs. | ||
| // For more information, see: https://flutter.dev/to/review-gradle-config. | ||
| minSdk = flutter.minSdkVersion | ||
| targetSdk = flutter.targetSdkVersion | ||
| versionCode = flutter.versionCode | ||
| versionName = flutter.versionName | ||
| } | ||
|
|
||
| buildTypes { | ||
| release { | ||
| // TODO: Add your own signing config for the release build. | ||
| // Signing with the debug keys for now, so `flutter run --release` works. | ||
| signingConfig = signingConfigs.getByName("debug") | ||
| } | ||
| } | ||
| } | ||
|
|
||
| flutter { | ||
| source = "../.." | ||
| } | ||
|
|
||
| dependencies { | ||
| // Import the Firebase BoM | ||
| implementation(platform("com.google.firebase:firebase-bom:34.8.0")) | ||
|
|
||
|
|
||
| // TODO: Add the dependencies for Firebase products you want to use | ||
| // When using the BoM, don't specify versions in Firebase dependencies | ||
| implementation("com.google.firebase:firebase-analytics") | ||
|
|
||
|
|
||
| // Add the dependencies for any other desired Firebase products | ||
| // https://firebase.google.com/docs/android/setup#available-libraries | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| <manifest xmlns:android="http://schemas.android.com/apk/res/android"> | ||
| <!-- The INTERNET permission is required for development. Specifically, | ||
| the Flutter tool needs it to communicate with the running application | ||
| to allow setting breakpoints, to provide hot reload, etc. | ||
| --> | ||
| <uses-permission android:name="android.permission.INTERNET"/> | ||
| </manifest> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| <manifest xmlns:android="http://schemas.android.com/apk/res/android"> | ||
| <application | ||
| android:label="GetWel+" | ||
| android:name="${applicationName}" | ||
| android:icon="@mipmap/ic_launcher"> | ||
| <activity | ||
| android:name=".MainActivity" | ||
| android:exported="true" | ||
| android:launchMode="singleTop" | ||
| android:taskAffinity="" | ||
| android:theme="@style/LaunchTheme" | ||
| android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" | ||
| android:hardwareAccelerated="true" | ||
| android:windowSoftInputMode="adjustResize"> | ||
| <!-- Specifies an Android theme to apply to this Activity as soon as | ||
| the Android process has started. This theme is visible to the user | ||
| while the Flutter UI initializes. After that, this theme continues | ||
| to determine the Window background behind the Flutter UI. --> | ||
| <meta-data | ||
| android:name="io.flutter.embedding.android.NormalTheme" | ||
| android:resource="@style/NormalTheme" | ||
| /> | ||
| <intent-filter> | ||
| <action android:name="android.intent.action.MAIN"/> | ||
| <category android:name="android.intent.category.LAUNCHER"/> | ||
| </intent-filter> | ||
| </activity> | ||
| <!-- Don't delete the meta-data below. | ||
| This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> | ||
| <meta-data | ||
| android:name="flutterEmbedding" | ||
| android:value="2" /> | ||
| </application> | ||
| <!-- Required to query activities that can process text, see: | ||
| https://developer.android.com/training/package-visibility and | ||
| https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT. | ||
|
|
||
| In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. --> | ||
| <queries> | ||
| <intent> | ||
| <action android:name="android.intent.action.PROCESS_TEXT"/> | ||
| <data android:mimeType="text/plain"/> | ||
| </intent> | ||
| </queries> | ||
| </manifest> |
5 changes: 5 additions & 0 deletions
5
flutter_app/android/app/src/main/kotlin/com/example/flutter_app/MainActivity.kt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| package com.example.flutter_app | ||
|
|
||
| import io.flutter.embedding.android.FlutterActivity | ||
|
|
||
| class MainActivity : FlutterActivity() |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: OpenLake/GetWelPlus
Length of output: 841
Consider upgrading to a more recent Flutter stable release.
The revision f6ff1529fd6d8af5f706051d9251ac9231c83407 is valid and from the stable channel, but it's from December 11, 2025. As of February 2026, newer stable releases are available (most recent from January 28, 2026). Update flutter to the latest stable version to benefit from recent bug fixes, performance improvements, and security patches.
🤖 Prompt for AI Agents