Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/dart-flitter/flitter


https://github.com/dart-flitter/flitter

Last synced: 2 months ago
JSON representation

Lists

README

        

# flitter

Gitter Client for Mobile made with Flutter

[![Build Status](https://travis-ci.org/dart-flitter/flitter.svg?branch=master)](https://travis-ci.org/dart-flitter/flitter)




## Getting Started

For help getting started with Flutter, view our online
[documentation](http://flutter.io/).

## Configuration

Create a `main.dart` inside `lib` folder with the following content.

```dart
import 'package:flitter/app.dart' as flitter;
import 'package:flitter/services/flitter_config.dart';

main() {
Config.init(gitter: const GitterConfig(
appId: "",
appSecret: "",
redirectionUrl: ""));

flitter.run();
}
```

As `GITTER_REDIRECTION_URL` value use "http://localhost:8080".

[More Infos](https://developer.gitter.im/docs/welcome)