1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 22:09:06 +00:00
Files
samples/web/samples_index
Brett Morgan 0ccc283a4e Fixup for failing Beta CI (#2092)
Turns out, we shipped a new Flutter beta as well. 

Commenting out `experimental/varfont_shader_puzzle` from beta CI

Everything else is just cleanup.

## Pre-launch Checklist

- [x] I read the [Flutter Style Guide] _recently_, and have followed its
advice.
- [x] I signed the [CLA].
- [x] I read the [Contributors Guide].
- [x] I updated/added relevant documentation (doc comments with `///`).
- [x] All existing and new tests are passing.

If you need help, consider asking for advice on the #hackers-devrel
channel on [Discord].

<!-- Links -->
[Flutter Style Guide]:
https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo
[CLA]: https://cla.developers.google.com/
[Discord]: https://github.com/flutter/flutter/wiki/Chat
[Contributors Guide]:
https://github.com/flutter/samples/blob/main/CONTRIBUTING.md
2023-11-16 14:48:50 +10:00
..
2023-11-14 07:02:36 +11:00
2022-12-15 21:36:04 -06:00
2023-11-14 07:02:36 +11:00
2022-12-15 21:36:04 -06:00
2020-03-09 16:17:08 -07:00
2023-11-16 14:48:50 +10:00
2023-03-26 02:49:30 +10:00

Flutter samples index generator

This tool is used to generate the visual samples index for Flutter samples.

Generating the index

We use grinder to run the build tasks:

$ dart pub get
$ dart run grinder generate

This will generate the index into ./web

Serving the index locally

If you want to serve the index locally, you can use webdev:

$ dart pub global activate grinder
$ webdev serve

Publishing the index

You can build the complete index into a publishable directory using Grinder:

$ dart run grinder build-release

This outputs the completely built index to ./public.

Generating cookbook content

The cookbook articles are generated using a WebDriver script that scrapes the docs.flutter.dev website. To run:

  1. Install ChromeDriver
  2. run chromedriver --port=4444 --url-base=wd/hub --verbose
  3. run dart run grinder scrape-cookbook