flitter

Gitter Client for Mobile made with Flutter

Build Status

Getting Started

For help getting started with Flutter, view our online documentation.

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".

More Infos