A simple chat application built with Flutter.
- Group chats
- Status
- Sending friend requests
- Clone the repository:
git clone https://github.com/SahanWeerasiri/simple-chat-app.git
- Navigate to the project directory:
cd simple-chat-app - Install dependencies:
flutter pub get
- Navigate to the backend project directory:
cd simple-chat-app cd backend
- Install dependencies for the backend server:
npm i
- Build the mysql database:
cd simple-chat-app cd database
-
Run the app:
flutter run
-
Build for release:
flutter build apk
-
Run the server:
cd simple-chat-app cd backend node server.js
Contributions are welcome! Please fork this repository and submit a pull request.
- Fork the repository
- Create a new branch (
git checkout -b feature-branch) - Commit your changes (
git commit -am 'Add new feature') - Push to the branch (
git push origin feature-branch) - Create a new Pull Request