/VESTalk-Flutter

This app was made using flutter , it was made during a mobile application based hackathon. It is a social media app which intends to connect different students from VESIT. It is a social networking app which has chat, blogs and google oauth for students of ves Ids

Primary LanguageDartMIT LicenseMIT

Contributors Language Activity Version Forks Stargazers Issues MIT License


VesTalk

An awesome Platform for connecting with VESIT Students
Explore the docs »

View Demo · Report Bug · Request Feature

Table of Contents

About The Project

There are many great applications available on GitHub, however, this can be counted as one them. We wanted to make an app that would connect VESIT students and teachers, therefore we used flutter and firebase to do it, which is hell of a task.

Here's why:

  • We needed hands on practice on dart.
  • We wanted to get an idea of creating open-source projects.
  • We wanted to explore about the Firebase and online streaming content. 😄

A list of commonly used resources that I find helpful are listed in the acknowledgements.

Built With

I am only listing the main things which are needed for this rest you can see inside the requirements.txt

Getting Started

First of all you will need a database of your own which should be created in firebase , we created out database with cloud-firestore you can use whichever database you want, we recommend Firestore. This the Database structure.


[
  user : [
    {
      "id" : (String),
      "designation" :  (String),
      "displayName" : (String),
      "email" : (String),
      "photoUrl" : (String [ Url of the image ]),
     }
  ],
  student : [
    {
      "batch" : (String),
      "branch" : (String),
      "phoneNumber" : (String),
      "year" : (String),
    } 
  ],
  posts : [
    comments : [
      {
        "id" : (String),
        "comment" : (String),
        "created" : (Timestamp),
        "designation" : (String),
        "displayName" : (String),
        "photoUrl" : (String [ Url of the image ]),
      }
    ]
  ],
  ChatRoom : [
    {
      "id" : (String),
      "userName" : (String),
      "chatroomId" : (String),
      "email" : (String),
      "photoUrl" : (String [ Url of the image ]),
      "time" : (Number),
      "userInfo" : [
        {
          "id" : (String),
          "designation" :  (String),
          "displayName" : (String),
          "email" : (String),
          "photoUrl" : (String [ Url of the image ]),
        },
       ],
       "chats" : [
          {
            "message" : (String),
            "messagedBy" : (String),
            "messagetime" : (Number),
            "time" : (Timestamp),
          }
       ]
    } 
  ]
]


After this add Data to your database and then integrate your database with by service_key.json generated by Firebase.

Post this you need to run the following command in the same directory in the Terminal or command prompt.

flutter pub get

If you have made it so far then you are genius enough to make your own application. Now run

flutter run

and ka-boom!! 👏

Seems Godlike!

Prerequisites

  • Flutter
  • Firebase admin-sdk
  • and some libraries

Installation

1.Generate youre sevice key account 2. Clone the repo

git clone https://github.com/your_username_/Project-Name.git
  1. Install packages
flutter pub get

and place service key in the app directory.

Roadmap

See the open issues for a list of proposed features (and known issues).

Contributing

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

Distributed under the MIT License. See LICENSE for more information.

Contributors

Contact

Project Link: https://github.com/devdattakhoche/VESTalk-Flutter

Acknowledgements