All Projects → dart-flitter → Flitter

dart-flitter / Flitter

Programming Languages

dart
5743 projects

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].