https://github.com/ristekoss/ulaskelas-frontend
Front End Repository for Ulas Kelas
https://github.com/ristekoss/ulaskelas-frontend
hacktoberfest student-project universitas-indonesia
Last synced: 5 months ago
JSON representation
Front End Repository for Ulas Kelas
- Host: GitHub
- URL: https://github.com/ristekoss/ulaskelas-frontend
- Owner: ristekoss
- License: mit
- Created: 2021-11-02T05:08:43.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-12-22T15:27:55.000Z (over 2 years ago)
- Last Synced: 2024-04-20T12:51:24.165Z (about 2 years ago)
- Topics: hacktoberfest, student-project, universitas-indonesia
- Language: Dart
- Homepage:
- Size: 1.55 MB
- Stars: 373
- Watchers: 3
- Forks: 6
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# 👨💻 Ulas Kelas
[](https://flutter.dev/docs)
[](https://dart.dev/guides)
[](https://github.com/RistekCSUI/ulaskelas-frontend/actions/workflows/config.yml)
[](https://github.com/RistekCSUI/ulaskelas-frontend/actions/workflows/firebase-hosting-merge.yml)
[](https://codecov.io/gh/RistekCSUI/ulaskelas-frontend)
[](https://play.google.com/store/)
[](https://pub.dev/packages/very_good_analysis)
[](https://pub.dev/packages/ristek_material_component)
Ulas Kelas app
## ⚡️ Getting Started
### 🚚 How to run, drive, and build Apk
Example how to run release development app
```
flutter clean
flutter pub get
flutter run -t lib/main_development.dart --release --flavor development
```
Example how to build release development app
```
flutter clean
flutter pub get
flutter build apk -t lib/main_development.dart --release --no-shrink --flavor development --split-per-abi
```
Example how to build bundle release production app
```
flutter clean
flutter pub get
flutter build appbundle -t lib/main_production.dart --release --no-shrink --flavor production
```
Example how to run flutter web app
```
flutter run -t lib/main_development.dart -d chrome
```
Example how to drive automation test on development environment
note that automation test doesn't support release mode
```
flutter drive -t test_driver/app.dart --flavor development
```
### ⚙️ Supported Flavor
1. development
2. production
### 🎯 Architecture & Pattern
Reso coder's fllutter clean architecture
How to communicate with [Data & Back end](lib/documentation/data_and_backend.md)

### 🧬️ State Management
Using state rebuilder for zero boilerplate state management
visit https://pub.dev/packages/states_rebuilder
### API Documentation
[Postman](https://www.getpostman.com/collections/682bf27acd4b0fc9010c)
How to import collection [here](https://developer.ft.com/portal/docs-start-install-postman-and-import-request-collection)
More Postman tutorial [here](https://www.postman.com/postman/workspace/postman-answers/request/9215231-f3a24076-e530-4858-b872-b028446f6fc6)
### Versioning
Major-Minor-Patch
Given a version number MAJOR.MINOR.PATCH, increment the:
1. MAJOR version when you make incompatible API changes,
2. MINOR version when you add functionality in a backwards compatible manner, and
3. PATCH version when you make backwards compatible bug fixes.
Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.
and also supported by [cider](https://pub.dev/packages/cider).
to patch: `cider bump patch --bump-build` or `make patch`
to minor: `cider bump minor --bump-build` or `make minor`
to major: `cider bump major --bump-build` or `make major`
### :capital_abcd: Naming Convention
snake_case for file and folder.
### :capital_abcd: Git flow
Commit rules:
(feat|fix|docs|style|refactor|perf|test|build|ci):\/*
feat: A new feature
fix: A bug fix
docs: Documentation only changes
style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
refactor: A code change that neither fixes a bug nor adds a feature
perf: A code change that improves performance
test: Adding missing tests
build: Changes to the build/compilation/packaging process or auxiliary tools such as documentation generation
ci: Changes in the continuous integration/delivery setup
examples:
feat: Form Login
ci: refactor analysis job
before push
1. flutter analyze
2. flutter test
branch rules:
(feature|hotfix|coldfix|service|integration|ui)\/\/*
### How to contribute
To help work on this project, please refer to [CONTRIBUTING.md](CONTRIBUTING.md)