Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
116 changes: 115 additions & 1 deletion README.md
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.
49 changes: 49 additions & 0 deletions flutter_app/.gitignore
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
45 changes: 45 additions & 0 deletions flutter_app/.metadata
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"
Comment on lines +6 to +8
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Verify Flutter revision f6ff1529fd6d8af5f706051d9251ac9231c83407

# Check if this revision exists in Flutter repository
echo "=== Checking specific revision ==="
curl -s https://api.github.com/repos/flutter/flutter/commits/f6ff1529fd6d8af5f706051d9251ac9231c83407 | jq -r '.sha, .commit.author.date' 2>/dev/null || echo "Revision check failed"

echo ""
echo "=== Latest stable releases ==="
# Get recent stable Flutter releases
curl -s https://api.github.com/repos/flutter/flutter/releases | jq -r '[.[] | select(.tag_name | test("stable|release"))] | .[0:3] | .[] | "\(.tag_name): \(.published_at)"' 2>/dev/null || echo "Release check failed"

echo ""
echo "=== Searching for revision in recent commits ==="
# Search for the revision in recent commits
curl -s "https://api.github.com/repos/flutter/flutter/commits?sha=stable&per_page=30" | jq -r '.[] | "\(.sha[0:7]): \(.commit.author.date)"' 2>/dev/null | head -20

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
In `@flutter_app/.metadata` around lines 6 - 8, Update the Flutter stable revision
specified under the version: revision key in .metadata to a current stable
release (replace the existing revision hash
"f6ff1529fd6d8af5f706051d9251ac9231c83407" with the latest stable revision hash
and, if present, update the channel and any associated version fields); locate
the version block (the revision and channel entries) and set the revision to the
latest stable commit hash (and update channel to "stable" if needed) so the
project uses the most recent Flutter stable release.


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'
16 changes: 16 additions & 0 deletions flutter_app/README.md
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.
28 changes: 28 additions & 0 deletions flutter_app/analysis_options.yaml
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
14 changes: 14 additions & 0 deletions flutter_app/android/.gitignore
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
61 changes: 61 additions & 0 deletions flutter_app/android/app/build.gradle.kts
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
}
7 changes: 7 additions & 0 deletions flutter_app/android/app/src/debug/AndroidManifest.xml
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>
45 changes: 45 additions & 0 deletions flutter_app/android/app/src/main/AndroidManifest.xml
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>
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()
Loading