1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2026-08-25 01:05:36 +00:00

docs: regenerate examples list and drop obsolete svn instructions

- EXAMPLES.md now lists all 54 apps; generated by
  scripts/generate_examples_doc.sh so it cannot drift again
- Replace dead 'svn checkout' instructions in GETTING_STARTED.md
  (GitHub removed SVN support) with git sparse-checkout
This commit is contained in:
Nishant Srivastava
2026-08-17 16:02:18 +02:00
parent b33c77a4cc
commit f62d1fcf6e
3 changed files with 144 additions and 34 deletions

View File

@@ -37,19 +37,24 @@ flutter run
## Download a single example
The repository is large. If you only want one example, use `svn`:
The repository is large. If you only want one example, use git sparse-checkout:
1. Install `svn` (macOS / Linux):
```bash
brew install svn
```
2. Replace `example_folder` in the command below with the example folder name:
```bash
svn checkout https://github.com/nisrulz/flutter-examples/trunk/example_folder
```
3. Example:
```bash
svn checkout https://github.com/nisrulz/flutter-examples/trunk/simple_material_app
```
```bash
git clone --no-checkout https://github.com/nisrulz/flutter-examples.git
cd flutter-examples
git sparse-checkout init --cone
git sparse-checkout set <example_folder>
git checkout
```
That's it. You now have the single example checked out.
Example:
```bash
git clone --no-checkout https://github.com/nisrulz/flutter-examples.git
cd flutter-examples
git sparse-checkout init --cone
git sparse-checkout set simple_material_app
git checkout
```
You now have the single example checked out.