A simple app to demonstrate a testable, maintainable, and scalable architecture for flutter. flutter_bloc, hive, and REST API are some of the tech stacks used in this project.
For the app to work, you need to provide your own last.fm API key by issuing here.
Once you get your API key, you can run or build the app by using the following command:
# Run
$ flutter run --dart-define=API_KEY=PUT_YOUR_API_KEY_HERE
# Build
$ flutter build --dart-define=API_KEY=PUT_YOUR_API_KEY_HERE
To run all unit and widget tests use the following command:
$ flutter test --coverage --test-randomize-ordering-seed random
To remove generated files from the coverage report, use the following command:
# install remove_from_coverage package
$ pub global activate remove_from_coverage
# remove `.g.dart` and `.config.dart` files from the coverage report
$ pub global run remove_from_coverage:remove_from_coverage -f coverage/lcov.info -r '.g.dart', '.config.dart'
To view the generated coverage report you can use lcov.
# Generate Coverage Report
$ genhtml coverage/lcov.info -o coverage/
# Open Coverage Report
$ open coverage/index.html
This project relies on flutter_localizations and follows the official internationalization guide for Flutter.
- To add a new localized string, open the
app_en.arb
file atlib/config/l10n/arb/app_en.arb
.
{
"@@locale": "en",
"appName": "LastFM",
"@appName": {
"description": "The application name"
}
}
- Then add a new key/value and description
{
"@@locale": "en",
"appName": "LastFM",
"@appName": {
"description": "The application name"
},
"albums": "Albums",
"@albums": {
"description": "Text shown in the AppBar of AlbumsScreen"
},
}
- Use the new string
import 'package:some_app/l10n/l10n.dart';
@override
Widget build(BuildContext context) {
final l10n = context.l10n;
return Text(l10n.albums);
}
Update the CFBundleLocalizations
array in the Info.plist
at ios/Runner/Info.plist
to include the new locale.
...
<key>CFBundleLocalizations</key>
<array>
<string>en</string>
<string>am</string>
</array>
...
- For each supported locale, add a new ARB file in
lib/config/l10n/arb
.
├── l10n
│ ├── arb
│ │ ├── app_en.arb
│ │ └── app_am.arb
- Add the translated strings to each
.arb
file:
app_en.arb
{
"@@locale": "en",
"appName": "LastFM",
"@appName": {
"description": "The application name"
},
}
app_am.arb
{
"@@locale": "am",
"appName": "የመጨረሻ ኤፍ ኤም",
"@appName": {
"description": "የመተግበሪያ ስም"
},
}
Thanks to all the people who created and are maintaining these awesome packages used in this project.
Maintainers | Packages |
---|---|
Felix Angelov | bloc & flutter_bloc, equatable, mocktail |
Thomas Burkhart | get_it |
Milad akarie | injectable |
Chris Sells | go_router |
Very Good Ventures | For their awesome README template |
And everyone else | dio, hive, and many more... |
You can file features requests (not intending to add new features, but I will try to add based on requests), bugs or any questions at the issue tracker.
And don't forget to give a star if you find this repo helpful, or you have learned something from it!