Home

Awesome

flitter

Gitter Client for Mobile made with Flutter

Build Status

<div style="text-align: center"><table><tr> <td style="text-align: center"> <img src="https://github.com/dart-flitter/flitter/blob/master/screenshots/flutter_01.png" height="400"> </td> <td style="text-align: center"> <img src="https://github.com/dart-flitter/flitter/blob/master/screenshots/flutter_02.png" height="400"> </td> <td style="text-align: center"> <img src="https://github.com/dart-flitter/flitter/blob/master/screenshots/flutter_03.png" height="400"> </td> </tr> </table> </div> <div style="text-align: center"><table><tr> <td style="text-align: center"> <img src="https://github.com/dart-flitter/flitter/blob/master/screenshots/flutter_04.png" height="400"> </td> <td style="text-align: center"> <img src="https://github.com/dart-flitter/flitter/blob/master/screenshots/flutter_05.png" height="400"> </td> <td style="text-align: center"> <img src="https://github.com/dart-flitter/flitter/blob/master/screenshots/flutter_07.png" height="400"> </td> </tr> </table> </div>

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