https://github.com/mutualmobile/praxisflutter
Example Flutter Project using Clean Architecture
https://github.com/mutualmobile/praxisflutter
clean-architecture dart flutter flutter-apps flutter-examples
Last synced: about 1 year ago
JSON representation
Example Flutter Project using Clean Architecture
- Host: GitHub
- URL: https://github.com/mutualmobile/praxisflutter
- Owner: mutualmobile
- Created: 2021-03-04T07:04:18.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-09-07T13:27:12.000Z (almost 3 years ago)
- Last Synced: 2025-04-09T12:42:49.933Z (about 1 year ago)
- Topics: clean-architecture, dart, flutter, flutter-apps, flutter-examples
- Language: Dart
- Homepage:
- Size: 31.9 MB
- Stars: 29
- Watchers: 6
- Forks: 6
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Praxis Flutter Playground
Minimal Flutter project targeting the following platforms
## Platforms
* Android β
DONE
* iOS β
DONE
* Web β
DONE
### Screenshots




## Getting Started π
This project contains 3 flavors:
- development
- staging
- production
```sh
To generate code for injectable
```sh
$ flutter packages pub run build_runner build --delete-conflicting-outputs
---
To run the desired flavor either use the launch configuration in VSCode/Android Studio or use the following commands:
```sh
# Development
$ flutter run --flavor development --target lib/main_development.dart
# Staging
$ flutter run --flavor staging --target lib/main_staging.dart
# Production
$ flutter run --flavor production --target lib/main_production.dart
---
## Running Tests π§ͺ
To run all unit and widget tests use the following command:
```sh
$ flutter test --coverage --test-randomize-ordering-seed random
```
To view the generated coverage report you can use [lcov](https://github.com/linux-test-project/lcov).
```sh
# Generate Coverage Report
$ genhtml coverage/lcov.info -o coverage/
# Open Coverage Report
$ open coverage/index.html
```
---
## Working with Translations π
This project relies on [flutter_localizations][flutter_localizations_link] and follows the [official internationalization guide for Flutter][internationalization_link].
### Adding Strings
1. To add a new localizable string, open the `app_en.arb` file at `lib/l10n/arb/app_en.arb`.
```arb
{
"@@locale": "en",
"counterAppBarTitle": "Counter",
"@counterAppBarTitle": {
"description": "Text shown in the AppBar of the Counter Page"
}
}
```
2. Then add a new key/value and description
```arb
{
"@@locale": "en",
"counterAppBarTitle": "Counter",
"@counterAppBarTitle": {
"description": "Text shown in the AppBar of the Counter Page"
},
"helloWorld": "Hello World",
"@helloWorld": {
"description": "Hello World Text"
}
}
```
3. Run the command to update translation
```sh
# Generate Translations.
$ flutter gen-l10n --template-arb-file=arb/app_en.arb
```
4. Use the new string after running
```dart
import 'package:flutter_praxis/l10n/l10n.dart';
@override
Widget build(BuildContext context) {
final l10n = context.l10n;
return Text(l10n.helloWorld);
}
```
### Adding Supported Locales
Update the `CFBundleLocalizations` array in the `Info.plist` at `ios/Runner/Info.plist` to include the new locale.
```xml
...
CFBundleLocalizations
en
es
...
```
### Adding Translations
1. For each supported locale, add a new ARB file in `lib/l10n/arb`.
```
βββ l10n
β βββ arb
β β βββ app_en.arb
β β βββ app_es.arb
```
2. Add the translated strings to each `.arb` file:
`app_en.arb`
```arb
{
"@@locale": "en",
"counterAppBarTitle": "Counter",
"@counterAppBarTitle": {
"description": "Text shown in the AppBar of the Counter Page"
}
}
```
`app_es.arb`
```arb
{
"@@locale": "es",
"counterAppBarTitle": "Contador",
"@counterAppBarTitle": {
"description": "Texto mostrado en la AppBar de la pΓ‘gina del contador"
}
}
```
[coverage_badge]: coverage_badge.svg
[flutter_localizations_link]: https://api.flutter.dev/flutter/flutter_localizations/flutter_localizations-library.html
[internationalization_link]: https://flutter.dev/docs/development/accessibility-and-localization/internationalization