Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 17 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# vfox-flutter
Flutter plugin for [vfox](https://vfox.lhan.me/).

Flutter plugin for [vfox](https://vfox.dev/).

## Install

Expand All @@ -10,6 +10,11 @@ After installing [vfox](https://github.com/version-fox/vfox), install the plugin
vfox add flutter
```

The Flutter SDK includes the Dart SDK;
if you install the Flutter SDK via the current vfox plugin,
there is no need to separately install the Dart SDK using the vfox plugin from
https://github.com/version-fox/vfox-dart .

### Example: Ubuntu 26.04

```bash
Expand All @@ -19,6 +24,13 @@ sudo apt install --assume-yes curl git unzip xz-utils zip libglu1-mesa
vfox use --global flutter@3.44.0
```

You can verify this using the following command:

```bash
dart --version
flutter --version --no-version-check
```

## Architecture selection

Available releases include architecture suffixes such as `3.44.0-arm64` and
Expand Down Expand Up @@ -51,10 +63,10 @@ export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn

Common mirror values:

| Mirror | URL |
|--------------------------------------|--------------------------------------------|
| China Flutter User Group (CFUG) | `https://storage.flutter-io.cn` |
| SJTU (Shanghai Jiao Tong University) | `https://mirror.sjtu.edu.cn/flutter_infra` |
| Mirror | URL |
|-----------------------------------------------|-----------------------------------------|
| CFUG (China Flutter User Group) | `https://storage.flutter-io.cn` |
| CERNET (China Education and Research Network) | `https://mirrors.cernet.edu.cn/flutter` |

For an up-to-date list of available mirrors, refer to the MirrorZ Help site: https://help.mirrors.cernet.edu.cn/flutter/ .

Expand Down