diff --git a/sites/docs/lib/_sass/base/_base.scss b/sites/docs/lib/_sass/base/_base.scss index f43758e2f2..41b11a947d 100644 --- a/sites/docs/lib/_sass/base/_base.scss +++ b/sites/docs/lib/_sass/base/_base.scss @@ -292,7 +292,7 @@ ol.steps { $step-indicator-height: 1.75rem; - li { + li:not(.nav-item) { >* { &:first-child { margin-block-start: 0; @@ -308,7 +308,7 @@ ol.steps { } } - ul>li { + ul:not(.nav-tabs)>li { &:not(:last-child) { padding-block-end: .5rem; } @@ -319,7 +319,7 @@ ol.steps { counter-increment: steps; ol, - ul { + ul:not(.nav-tabs) { padding-inline-start: 2rem; margin-block-end: 0.75rem; } diff --git a/sites/docs/src/content/install/manual.md b/sites/docs/src/content/install/manual.md index 6e6c237174..89831d622a 100644 --- a/sites/docs/src/content/install/manual.md +++ b/sites/docs/src/content/install/manual.md @@ -171,26 +171,53 @@ then extract the SDK to where you want it stored. Extract the SDK bundle you downloaded into the directory you want to store the Flutter SDK in. - 1. Copy the following command. - 1. Replace `` with the path to the bundle you downloaded. - 1. Replace `` with the path to the - folder you want the extracted SDK to be in. - 1. Run the edited command in your preferred terminal. - - ```console - $ Expand-Archive –Path -Destination + + + + 1. Copy the following command. + 1. Replace `` with the path to the bundle you downloaded. + 1. Replace `` with the path to the + folder you want the extracted SDK to be in. + 1. Run the edited command in PowerShell: + + ```powershell + Expand-Archive -Path -DestinationPath + ``` + + For example, if you downloaded the bundle for Flutter 3.47.3 into + the `$env:USERPROFILE\Downloads` directory and want to + store the extracted SDK in the `$env:USERPROFILE\develop` directory: + + ```powershell + Expand-Archive ` + -Path "$env:USERPROFILE\Downloads\flutter_windows_3.47.3-stable.zip" ` + -DestinationPath "$env:USERPROFILE\develop" ``` - For example, if you downloaded the bundle for Flutter 3.29.3 into + + + + 1. Copy the following command. + 1. Replace `` with the path to the bundle you downloaded. + 1. Replace `` with the path to the + folder you want the extracted SDK to be in. + 1. Run the edited command in Command prompt: + + ```bat + tar -xf -C + ``` + + For example, if you downloaded the bundle for Flutter 3.47.3 into the `%USERPROFILE%\Downloads` directory and want to store the extracted SDK in the `%USERPROFILE%\develop` directory: - ```console - $ Expand-Archive ` - -Path $env:USERPROFILE\Downloads\flutter_windows_3.29.3-stable.zip ` - -Destination $env:USERPROFILE\develop\ + ```bat + tar -xf "%USERPROFILE%\Downloads\flutter_windows_3.47.3-stable.zip" -C "%USERPROFILE%\develop" ``` + + + :::note If the `flutter.bat` file is missing from the `bin` directory after extraction, your antivirus software might have quarantined it. @@ -247,12 +274,12 @@ For details, check out the $ unzip -d ``` - For example, if you downloaded the bundle for Flutter 3.29.3 into + For example, if you downloaded the bundle for Flutter 3.47.3 into the `~/Downloads` directory and want to store the extracted SDK in the `~/develop` directory: ```console - $ unzip ~/Downloads/flutter_macos_3.29.3-stable.zip -d ~/develop/ + $ unzip ~/Downloads/flutter_macos_3.47.3-stable.zip -d ~/develop/ ``` {: .steps .macos-only} @@ -284,12 +311,12 @@ For details, check out the $ tar -xf -C ``` - For example, if you downloaded the bundle for Flutter 3.29.3 into + For example, if you downloaded the bundle for Flutter 3.47.3 into the `~/Downloads` directory and want to store the extracted SDK in the `~/develop` directory: ```console - $ tar -xf ~/Downloads/flutter_linux_3.29.3-stable.tar.xz -C ~/develop/ + $ tar -xf ~/Downloads/flutter_linux_3.47.3-stable.tar.xz -C ~/develop/ ``` {: .steps .linux-only .chromeos-only}