File tree Expand file tree Collapse file tree 1 file changed +2
-15
lines changed Expand file tree Collapse file tree 1 file changed +2
-15
lines changed Original file line number Diff line number Diff line change @@ -31,21 +31,8 @@ The following steps are needed to run the app from the source code.
31
31
32
32
## Install Flutter
33
33
34
- Either with
35
-
36
- ``` bash
37
- sudo snap install flutter --classic
38
- ```
39
-
40
- Or with
41
-
42
34
``` bash
43
- sudo apt install git curl cmake meson make clang libgtk-3-dev pkg-config
44
- mkdir ~ /development
45
- cd ~ /development
46
- git clone https://github.com/flutter/flutter.git -b master
47
- echo ' export PATH="$PATH:$HOME/development/flutter/bin"' >> ~ /.bashrc
48
- source ~ /.bashrc
35
+ sudo apt -y install git curl cmake meson make clang libgtk-3-dev pkg-config && mkdir -p ~ /development && cd ~ /development && git clone https://github.com/flutter/flutter.git -b stable && echo ' export PATH="$PATH:$HOME/development/flutter/bin"' >> ~ /.bashrc && source ~ /.bashrc
49
36
```
50
37
51
38
# TODO
@@ -95,4 +82,4 @@ However for new contributors please follow those rules:
95
82
- as long as we stick to the provider package try to avoid provider calls as much as possible and prefer to forward callbacks and values where you can
96
83
- do not split files with [ the part keyword] ( https://dart.dev/guides/libraries/create-packages#organizing-a-package )
97
84
- do not shadow function definitions with [ typedef] ( https://dart.dev/language/typedefs )
98
- - use absolute imports
85
+ - use absolute imports
You can’t perform that action at this time.
0 commit comments