mirror of https://github.com/flutter/samples.git
Update web readme (#79)
parent
465f4dba91
commit
4963d7c6a6
@ -1,14 +1,22 @@
|
|||||||
Samples for [Flutter for web](https://flutter.dev/web).
|
Samples for [Flutter for web](https://flutter.dev/web).
|
||||||
|
|
||||||
#### Building Samples code
|
## See the samples in action
|
||||||
Set up `webdev` for first time as below:
|
|
||||||
```
|
|
||||||
$ pub global activate webdev
|
|
||||||
$ pub get
|
|
||||||
```
|
|
||||||
|
|
||||||
Build and run code locally at `http://localhost:8080`
|
Compiled versions of the samples are hosted at [flutter.github.io/samples](https://flutter.github.io/samples/).
|
||||||
```
|
|
||||||
|
## Building samples code
|
||||||
|
|
||||||
|
Make sure you have configured the `webdev` tool.
|
||||||
|
|
||||||
|
- [With the Flutter SDK installed](https://github.com/flutter/flutter_web#install-the-flutter_web-build-tools).
|
||||||
|
- [With the Dart SDK installed](https://dart.dev/tools/webdev#using-webdev-and-build_runner-commands).
|
||||||
|
|
||||||
|
Go into one of the sample directories, get packages, and run.
|
||||||
|
|
||||||
|
```console
|
||||||
|
$ cd gallery
|
||||||
|
$ flutter packages pub get # or `pub get` with the Dart SDK
|
||||||
$ webdev serve
|
$ webdev serve
|
||||||
```
|
```
|
||||||
Checkout [this link](https://dart.dev/tools/webdev#using-webdev-and-build_runner-commands) for more details about building, serving and testing code.
|
|
||||||
|
You should see a message printing the URL to access: `http://localhost:8080`
|
||||||
|
Loading…
Reference in new issue