Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ratakondalaarun/gitter_mobile
Gitter mobile client built with flutter.
https://github.com/ratakondalaarun/gitter_mobile
android bloc dart flutter gitter gitter-client gittermobile
Last synced: 30 days ago
JSON representation
Gitter mobile client built with flutter.
- Host: GitHub
- URL: https://github.com/ratakondalaarun/gitter_mobile
- Owner: RatakondalaArun
- License: bsd-3-clause
- Created: 2020-12-15T13:39:36.000Z (almost 4 years ago)
- Default Branch: dev
- Last Pushed: 2021-01-21T08:45:05.000Z (almost 4 years ago)
- Last Synced: 2023-03-10T09:17:04.555Z (over 1 year ago)
- Topics: android, bloc, dart, flutter, gitter, gitter-client, gittermobile
- Language: Dart
- Homepage:
- Size: 1.29 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gitter Mobile App
[![Join the chat at https://gitter.im/RatakondalaArun/GitterMobile](https://badges.gitter.im/RatakondalaArun/GitterMobile.svg)](https://gitter.im/RatakondalaArun/GitterMobile?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[Gitter](https://gitter.im/) is a community for software developers.
This project is the mobile application.*This is an unoffical Gitter mobile app build with flutter and dart.*
*This app is still in development stage.*
## Prerequisites and start
Follow these instructions to setup and start an environment to develop gitter mobile.
1) You need flutter and dart sdk on you machine.
- Follow the instructions at Offical [installation guide](https://flutter.dev/docs/get-started/install).2) Fork and clone this project
```bash
git clone https://github.com/{Your github username}/gitter_mobile.git
```3) Create a file name `keys.dart` under `lib/keys` folder
This file should contains following code.```dart
// This are required to get access token from gitter.
// You can find this under https://developer.gitter.im/apps
class Keys {
// This is your app OAUTH KEY
static const CLIENT_ID = 'Your client id';
// This is your app OAUTH SECRET
static const CLIENT_SECERET = 'your client secret';
// This is your REDIRECT URL
static const CALLBACK_URL = 'gitter://success';
// This is the value which is used for call back
static const CALL_BACK_URL_SCHEME = 'gitter';
}
```4) Install Dependencies
```shell
dart pub get
```5) Now run your app
```bash
flutter run
```and select your device.
If you are unable to start the app you can create a [issue](https://github.com/RatakondalaArun/gitter_mobile/issues/new).
Note
- *This app does not support flutter web yet.*
- *Not tested on IOS devices.*
- *Pull requests should be made against `dev` not `main`.*