We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c39ee9 commit 3d8d34aCopy full SHA for 3d8d34a
1 file changed
docs/Architecture.md
@@ -24,6 +24,24 @@ The `.fvmrc` is used by [fvm](https://fvm.app/) to specify the flutter version.
24
└── pubspec.yaml
25
```
26
27
+### Flutter code :
28
+
29
+Contain the flutter code that make the app.
30
+Follow a view-model structure where `components` contain reusable parts.
31
32
+```sh
33
+.
34
+├── lib
35
+│ ├── app.dart
36
+│ ├── components
37
+│ ├── l10n # see Translations
38
+│ ├── main.dart
39
+│ ├── models
40
+│ ├── network
41
+│ ├── services
42
+│ ├── utils
43
+│ └── views
44
+```
45
46
## Android :
47
0 commit comments