Fly towards a more connected future with Wings HQ :D

Related tags

Templates WingsHQ
Overview

WingsHQ

Flying towards a more connected future

WingsHQ



forthebadge forthebadge forthebadge forthebadge forthebadge

For Project Presentation(website) Click here

For Project Demo Video(youtube) : Click Here

πŸ—‚ CONTENT:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 

πŸ“Œ HackMIT

πŸ“Œ Inspiration

πŸ“Œ Tech Stack

πŸ“Œ Features

πŸ“Œ How to get started

πŸ“Œ Steps to follow

πŸ“Œ Developed By

πŸ“Œ ScreenShots

πŸ“Œ Features We Demand

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 

πŸ† HackMIT


HackMIT__4_-removebg-preview


🏷️ Inspiration

With more and more doctors and frontline workers joining the force for saving people's lives due to covid 19, thus creating a shortage in doctor appointments for people who are suffering from various diseases. It's high time to bridge the gap between the two. WingsHQ solves this problem by leveraging the power of community. The idea was generated during the HackMIT Hackathon by MIT.

WingsHQ is a mobile Application made using Flutter to create a community driven health platform for various day-to-day health related issues. A User can make an account on WingsHQ and join exclusive groups which he/she wants to join to talk about the problems they are facing in their health. A dedicated professional help and assistance page is made to take professional advice from doctors who are available and can help people from anywhere in the world by chatting with them.

⬆️ BACK TO CONTENT


🏷️ Tech Stack
+ Flutter +
+ Firestore +
+ Gnews[dot]io Public Api +
+ Razorpay Payment Gateway +

⬆️ BACK TO CONTENT


🏷️ Features

Main Features

πŸ‘‰ Community Groups - Anyone can share their problems, their stories, take help from the community and live a healthy life. The group chat features allows multiple users to join multiple groups at the same time. Every time a new group is made, the person who made the group becomes Admin. The most important thing to preserve a person's privacy is a proper way of communication. So We have introduced an end-to-end encrypted chat system (AES) which takes care if all messages are encrypted.

πŸ‘‰ Healthcare Professional Page- A separate page has been introduced which shows a user the list of professional doctors and surgeons who are available and can help them with professional advice.

    πŸ‘‰ Timeline Page- The Home Page/Timeline Page of the app is divided into two sections
  • New Groups- This container fetches all the newly formed groups and adds that to the listview using horizontal scroll
  • Health News- The Health News Section cooperates with gnews.io (public api) api to fetch and gather all the health related news and shows that to the user. A "see more" feature is also added for further expansion of the news in a browser

Additional Features

πŸ‘‰ Extensive Search: With the search feature, a user can find a group which they want to join in. Based on groups the results will be shown and they can join the group in just one click.
πŸ‘‰ BMI Calculator: Based on the height and weight of the user, the BMI calculator feature calculates the BMI of a person. This helps him to know that if he is underweight or overweight or normal.
πŸ‘‰ Meditation Timer: For medidation
πŸ‘‰ Razorpay integration: - Razorpay integration to help doctors monitarily for their service.

⬆️ BACK TO CONTENT



⭐ How to get started?

forthebadge
You can refer to the following articles on the basics of Git and Github and also contact the Project Mentors, in case you are stuck:

⬆️ BACK TO CONTENT


⭐ Steps to follow πŸ“œ


1️⃣ Install The Apk into your Android Phone

You can download the apk from google drive and install the app by clicking here


2️⃣ Clone it πŸ‘₯

You need to clone (download) it to local machine using

$ git clone https://github.com/Your_Username/WingsHQ.git

This makes a local copy of repository in your machine.

Once you have cloned the WingsHQ repository in Github, move to that folder first using change directory command on linux and Mac.

# This will change directory to a folder  WingsHQ
$ cd WingsHQ

Move to this folder for all other commands.


3️⃣ Set it up ⬆️

Run the following commands to see that your local copy has a reference to your forked remote repository in Github :octocat:

$ git remote -v
origin  https://github.com/Your_Username/WingsHQ.git (fetch)
origin  https://github.com/Your_Username/WingsHQ.git (push)

Now, lets add a reference to the original WingsHQ repository using

$ git remote add upstream https://github.com/xybercommander/WingsHQ.git

This adds a new remote named upstream.

See the changes using

$ git remote -v
origin    https://github.com/Your_Username/WingsHQ.git (fetch)
origin    https://github.com/Your_Username/WingsHQ.git (push)
upstream  https://github.com/xybercommander/WingsHQ.git (fetch)
upstream  https://github.com/xybercommander/WingsHQ.git (push)

4️⃣ Sync it ♻️

Always keep your local copy of repository updated with the original repository. Before making any changes and/or in an appropriate interval, run the following commands carefully to update your local repository.

# Fetch all remote repositories and delete any deleted remote branches
$ git fetch --all --prune

# Switch to `master` branch
$ git checkout master

# Reset local `master` branch to match `upstream` repository's `master` branch
$ git reset --hard upstream/master

# Push changes to your forked `WingsHQ  ` repo
$ git push origin master

5️⃣ Ready Steady Go... 🐒 πŸ‡

Once you have completed these steps, you are ready to start contributing by checking our Help Wanted Issues and creating


6️⃣ Create a new branch ‼️

Whenever you are going to make contribution. Please create separate branch using command and keep your master branch clean (i.e. synced with remote branch).

# It will create a new branch with name Branch_Name and switch to branch Folder_Name
$ git checkout -b Folder_Name

Create a separate branch for contribution and try to use same name of branch as of folder.

To switch to desired branch

# To switch from one folder to other
$ git checkout Folder_Name

To add the changes to the branch. Use

# To add all files to branch Folder_Name
$ git add .

Type in a message relevant for the code reviewer using

# This message get associated with all files you have changed
$ git commit -m 'relevant message'

8️⃣ Share your work 🀩

Now, Push your awesome work to your remote repository using

# To push your work to your remote repository
$ git push -u origin Folder_Name

Then, go to your repository in browser and click on compare and pull requests. Then add a title and description to your pull request that explains your precious effort.

⬆️ BACK TO CONTENT


🏷️ Developed By

⬆️ BACK TO CONTENT


🏷️ ScreenShots

Login

Login

Create Account

Create Account

Timeline

Timeline

Chat

Chat

Search

Search

⬆️ BACK TO CONTENT


⭐ Features We Demand

1️⃣ AUTOMATION : Perform Tasks In Background

πŸ”˜ To generate notifications build a notify system
πŸ”˜ Make a special notification system which instantly shows new news and group chats
πŸ”˜ User friendly filtering of health news and public groups
πŸ”˜ Share Personal Health Progress to different public groups and health Professionals
πŸ”˜ Auto-generation of health professionals' written prescription
πŸ”˜ User friendly sorting and filtering e
πŸ”˜ Build a Voice-chat and Video option in the chat section
πŸ”˜ Need a fully functioning Machine Learning Handwriting to text translator
πŸ”˜ Need a fully functioning Machine Learning Model to ban toxic people in the community

⬆️ BACK TO CONTENT



Back To The Top

You might also like...

More than 130+ pages in this beautiful app and more than 45 developers has contributed to it.

More than 130+ pages in this beautiful app and more than 45 developers has contributed to it.

flutter-ui-nice ❀️ Star ❀️ the repo to support the project or πŸ˜„ Follow Me.Thanks! Facebook Page Twitter Medium QQ Group Flutter Open NieBin Flutter O

Jan 3, 2023

An extended version of Flutter Colors with more swatches and more flexibility to generate your own custom swatch.

An extended version of Flutter Colors with more swatches and more flexibility to generate your own custom swatch.

Colours An extended version of Flutter Colors with more swatches and more flexibility to generate your own custom swatch. Getting Started In your flut

Nov 23, 2021

More than 130+ pages in this beautiful app and more than 45 developers has contributed to it.

More than 130+ pages in this beautiful app and more than 45 developers has contributed to it.

flutter-ui-nice ❀️ Star ❀️ the repo to support the project or πŸ˜„ Follow Me.Thanks! Facebook Page Twitter Medium QQ Group Flutter Open NieBin Flutter O

Jan 5, 2023

An easy-to-use flutter http network requests handler with more functionality than http but more simpler than dio.

network_requests An easy-to-use flutter http network requests handler with more functionality than http but more simpler than dio. Platform Supported

Dec 15, 2022

App HTTP Client is a wrapper around the HTTP library Dio to make network requests and error handling simpler, more predictable, and less verbose.

App HTTP Client App HTTP Client is a wrapper around the HTTP library Dio to make network requests and error handling simpler, more predictable, and le

Nov 1, 2022

A flutter boilerplate project containing bloc, pedantic, hive, easy_translations and more!

A flutter boilerplate project containing bloc, pedantic, hive, easy_translations and more!

Flutter Production Boilerplate A flutter project containing bloc, flutter_lints, hive, easy_translations and more! This repository is the starting poi

Dec 26, 2022

This repo is for anything that can be reusable in flutter like custom widgets πŸŸ₯, animations 🌟and more

Ease This packa is for anything that can be reusable in flutter like custom widgets πŸŸ₯ , animations 🌟 and more. Features 1-custom text widget to ease

Dec 3, 2022

A platform to make your social media experience more safe

cyber_watch A new Flutter project. Getting Started This project is a starting point for a Flutter application. A few resources to get you started if t

Feb 25, 2022
Owner
Samrat Mukherjee
Talk is cheap, show me the code.
Samrat Mukherjee
Magpie-fly is a component library produced by 58 Group, which encapsulates a variety of common components to meet the needs of developers

[toc] magpie_fly Magpie-fly 是58ι›†δ½“ε‡Ίε“η»„δ»ΆεΊ“οΌŒε°θ£…δΊ†ε€šη§εΈΈη”¨η»„δ»ΆοΌŒδ»₯ζ»‘θΆ³εΌ€ε‘θ€…ιœ€ζ±‚γ€‚(Magpie-fly is a component library produced by 58 Group, which encapsulates a variety of com

Wuba 40 Mar 18, 2022
Time Table application specifically aimed towards students. Share Time-Tables. Suggest Updates.

Time-Table-App Time Table application specifically aimed towards students. Tech stack Project is created by: Flutter: 2.8.1 Dart: 2.15.1 Planned Featu

PEC ACM CSS 8 Oct 7, 2022
Creating cross-platform solution to help keep individuals connected

Back-to-Hue-Frontend Creating cross-platform solution to help keep individuals connected First Draft: No backend Google Maps API, format into desired

Jeevan Prakash 3 Mar 30, 2022
it's just phone number authentication and connected to firebase

simplevar A new Flutter project. Getting Started This project is a starting point for a Flutter application. A few resources to get you started if thi

vivek kumar 0 Dec 27, 2021
CartToGo is an IoT-based smart system that is connected to an iOS mobile application

CartToGo is an IoT-based smart system that is connected to an iOS mobile application, used by supermarket shoppers to reduce their waiting time in the queue lines and that’s done by enabling them to scan each product’s barcode to display its price and total price on the LCD display as well as the iOS mobile application.

CartToGo 5 Dec 15, 2022
A simple application connected with API (The Movie Database), related to movies. Application created using BLoC pattern and RxDart

MovieApp I will not hide that this is the most difficult application I have done so far (and I am still working on new features). It looks like this (

Adam Dybcio 9 Oct 28, 2022
A basic login/register screen that can be used as a template for future Flutter projects.

A Flutter / Firebase login screen A simple flutter/dart based login-screen that connects with Firebase Auth to enable users to sign-in/up with Email o

Kim Andre Langholz 142 Dec 20, 2022
Makes it possible to safely execute and retry a Future inside a StatelessWidget

futuristic Makes it possible to safely execute and retry a Future inside a StatelessWidget. See the Mainstream package for a similar API for working w

Martin Rybak 28 Sep 15, 2022
A future based dart package for the NLT (New Living Translation) API.

NLT API Bible for Dart A future based dart package for the NLT API from Tyndale which can be used to fetch NLT and KJV bible passages. This package re

Ariel Magbanua 3 Nov 17, 2022
Weather app using Bloc architecture pattern & generic HTTP client with interface implementation and much more for more detail read Readme

weather Weather application for current weather, hourly forecast for 48 hours, Daily forecast for 7 days and national weather alerts. How to Run Insta

Jibran Ahmed SiddiQui 9 Oct 29, 2022