Skip to content

Integrate the Twilio Conversations SDK with your Flutter app using this Twilio Conversations Flutter plugin

Notifications You must be signed in to change notification settings

Diversido/flutter_twilio_conversations

Repository files navigation

By Diversido

Flutter Twilio Conversations

This package is based on Twilio Programmable Chat Plugin. We decided to make our own version of it and rebase to Twilio Conversations SDK since Twilio Programmeble Chat is sunsetting this year. It is not an official plugin and still requires some fixes and further maintenance, please do not report issues of it to Twilio — if you have any issues, please file an issue instead of contacting support.

Installing the plugin

# Run the following command
$ dart pub add flutter_twilio_conversations

Setup

No special setup required, most of the tips on Console setup can be found in Twilio's Native SDK Guides

Supported platforms

  • Android
  • iOS
  • Web

Tutorial for uploading new versions

# Start by uploading a new version of the Platform interface
$ (cd flutter_twilio_conversations_platform_interface && flutter pub get && dart pub publish)
# Then wait several minutes and upload the new Web package, which depends on the new version of the interface
$ (cd flutter_twilio_conversations_web && flutter pub upgrade && dart pub publish)
# Then wait several minutes and upload the new main package, which depends on both other packages
$ (cd flutter_twilio_conversations && flutter pub upgrade && dart pub publish)

Development and Contributing

Feel free to contribute by creating merge requests!