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: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dart-flitter/flitter
- Owner: dart-flitter
- Created: 2017-03-29T12:46:34.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-12T02:17:45.000Z (over 6 years ago)
- Last Synced: 2024-04-25T03:25:33.373Z (7 months ago)
- Language: Dart
- Size: 1.76 MB
- Stars: 184
- Watchers: 17
- Forks: 41
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- open-source-flutter-apps - Flitter - Glitter app by [Hadrien Lejard](https://twitter.com/HadrienLejard) and [Kevin Segaud](https://twitter.com/kevin_segaud). It uses Redux and Jaguar. (Uncategorized / Uncategorized)
- awesome-flutter-app - Flitter - 由 [Hadrien Lejard](https://twitter.com/HadrienLejard) 和 [Kevin Segaud](https://twitter.com/kevin_segaud) 开发的Glitter 应用,使用了 Redux 和 Jaguar (开源项目)
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)