flitter
Gitter Client for Mobile made with Flutter.
Configuration
Create a main.dart
inside lib
folder with the following content.
import 'package:flitter/app.dart' as flitter;
import 'package:flitter/services/flitter_config.dart';
main() {
Config.init(gitter: const GitterConfig(
appId: "<GITTER_APP_ID>",
appSecret: "<GITTER_APP_SECRET>",
redirectionUrl: "<GITTER_REDIRECTION_URL>"));
flitter.run();
}
As GITTER_REDIRECTION_URL
value use "http://localhost:8080".