Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/path-yu/flutter_chat
Instant chat software based on firebase
https://github.com/path-yu/flutter_chat
android android-application chat chat-application chatapp chatbot chatgpt dark-theme firebase flutter flutter-app material-design material-ui
Last synced: about 1 month ago
JSON representation
Instant chat software based on firebase
- Host: GitHub
- URL: https://github.com/path-yu/flutter_chat
- Owner: path-yu
- Created: 2022-12-12T00:24:05.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-29T02:12:38.000Z (11 months ago)
- Last Synced: 2023-12-29T16:59:22.123Z (11 months ago)
- Topics: android, android-application, chat, chat-application, chatapp, chatbot, chatgpt, dark-theme, firebase, flutter, flutter-app, material-design, material-ui
- Language: JavaScript
- Homepage: https://flutter-chat-sage.vercel.app
- Size: 7.21 MB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# flutter_chat
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.## screenshot
![newFriends.png](https://github.com/path-yu/flutter_chat/blob/main/img/chatGPT.png)
![addContact.png](https://github.com/path-yu/flutter_chat/blob/main/img/addContact.png)
![chat.png](https://github.com/path-yu/flutter_chat/blob/main/img/chat.png)
![contacts.png](https://github.com/path-yu/flutter_chat/blob/main/img/contacts.png)
![edit_user.png](https://github.com/path-yu/flutter_chat/blob/main/img/edit_user.png)
![login.png](https://github.com/path-yu/flutter_chat/blob/main/img/login.png)
![newFriends.png](https://github.com/path-yu/flutter_chat/blob/main/img/newFriends.png)
## run for web
```shell
flutter run -d chrome --web-renderer html
```## build apk
```shell
flutter build apk --obfuscate --split-debug-info=splitMap --target-platform android-arm,android-arm64,android-x64 --split-per-abi
```## build web
```shell
flutter build web --output=web_build
```## test DeepLink
```shell
./adb shell am start -a android.intent.action.VIEW \
-c android.intent.category.BROWSABLE \
-d "http://flutterbooksample.com/book/1" \
com.example.flutter_chat
./adb shell am start -a android.intent.action.VIEW -c android.intent.category.BROWSABLE -d "http://flutterbooksample.com/book/1" com.example.flutter_chat
```