You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-7Lines changed: 12 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,8 +19,6 @@ This is a very simple Boilerplate application, this has following features.
19
19
> It uses a mock json server which doesn't store or validate anything, so for signing in/up any email, password will simply work.
20
20
21
21
[RiverPod](https://riverpod.dev/) was used for state management, but there's an old implementation with [Flutter bloc](https://bloclibrary.dev/#/) as well, you may check out [bloc](https://github.com/SimpleBoilerplates/Flutter/tree/bloc) branch, though that branch doesn't have many of the latest changes.
22
-
23
-
**I am available for hire for Flutter position**
24
22
25
23
## Getting Started 🚀
26
24
@@ -69,30 +67,37 @@ $ open coverage/index.html
69
67
70
68
---
71
69
72
-
## Avoid writing scripts with MakeFile / Derry
70
+
71
+
## Use MakeFile / Derry to avoid writing your own scripts
72
+
73
73
74
74
You can run all these scripts manually or could use [MakeFile](https://github.com/SimpleBoilerplates/Flutter/blob/master/makefile) / [Derry](https://pub.dev/packages/derry) and maintain a file, where you can define all those scripts and run in a very convinient way. All the scripts for this project is defined here [derry scripts](https://github.com/SimpleBoilerplates/Flutter/blob/master/derry.yaml) and [makefile scripts](https://github.com/SimpleBoilerplates/Flutter/blob/master/makefile)
75
75
76
76
Example:
77
77
78
-
instead of running
78
+
run `make watch` or `derry watch`instead of running
79
79
80
80
```sh
81
81
flutter pub run build_runner watch --delete-conflicting-outputs
82
82
```
83
-
you could simply use `make watch` or `derry watch`
84
83
85
-
or use`derry build_apk_dev` or `make build_apk_dev` instead of
84
+
run`derry build_apk_dev` or `make build_apk_dev` instead of
86
85
87
86
```sh
88
87
flutter build apk --flavor development -t lib/main_development.dart
89
88
```
90
-
89
+
and so on. Check out this [makefile](https://github.com/SimpleBoilerplates/Flutter/blob/master/makefile) or [derry scripts](https://github.com/SimpleBoilerplates/Flutter/blob/master/derry.yaml).
91
90
92
91
## Working with Translations 🌐
93
92
94
93
This project relies on [flutter_localizations][flutter_localizations_link] and follows the [official internationalization guide for Flutter][internationalization_link].
95
94
95
+
If you face trouble after with translations, then run
0 commit comments