Gitter 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.
Follow these instructions to setup and start an environment to develop gitter mobile.
-
You need flutter and dart sdk on you machine.
- Follow the instructions at Offical installation guide.
-
Fork and clone this project
git clone https://github.com/{Your github username}/gitter_mobile.git
-
Create a file name
keys.dart
underlib/keys
folder This file should contains following code.// 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'; }
-
Install Dependencies
dart pub get
-
Now run your app
flutter run
and select your device.
If you are unable to start the app you can create a issue.
Note
- This app does not support flutter web yet.
- Not tested on IOS devices.
- Pull requests should be made against
dev
notmain
.