Skip to content

Fly towards a more connected future with Wings HQ :D

Notifications You must be signed in to change notification settings

xybercommander/WingsHQ

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

40 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

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

About

Fly towards a more connected future with Wings HQ :D

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages