├── .gitignore ├── BLOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── lib ├── chatpage.dart └── main.dart ├── output.gif └── pubspec.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadaspetra/ChatGPT-Flutter-Messenger/HEAD/.gitignore -------------------------------------------------------------------------------- /BLOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadaspetra/ChatGPT-Flutter-Messenger/HEAD/BLOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadaspetra/ChatGPT-Flutter-Messenger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadaspetra/ChatGPT-Flutter-Messenger/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadaspetra/ChatGPT-Flutter-Messenger/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /lib/chatpage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadaspetra/ChatGPT-Flutter-Messenger/HEAD/lib/chatpage.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadaspetra/ChatGPT-Flutter-Messenger/HEAD/lib/main.dart -------------------------------------------------------------------------------- /output.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadaspetra/ChatGPT-Flutter-Messenger/HEAD/output.gif -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadaspetra/ChatGPT-Flutter-Messenger/HEAD/pubspec.yaml --------------------------------------------------------------------------------