Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions sites/docs/lib/_sass/base/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ ol.steps {

$step-indicator-height: 1.75rem;

li {
li:not(.nav-item) {
>* {
&:first-child {
margin-block-start: 0;
Expand All @@ -308,7 +308,7 @@ ol.steps {
}
}

ul>li {
ul:not(.nav-tabs)>li {
&:not(:last-child) {
padding-block-end: .5rem;
}
Expand All @@ -319,7 +319,7 @@ ol.steps {
counter-increment: steps;

ol,
ul {
ul:not(.nav-tabs) {
padding-inline-start: 2rem;
margin-block-end: 0.75rem;
}
Expand Down
61 changes: 44 additions & 17 deletions sites/docs/src/content/install/manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 `<sdk_zip_path>` with the path to the bundle you downloaded.
1. Replace `<destination_directory_path>` 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 <sdk_zip_path> -Destination <destination_directory_path>
<Tabs key="windows-terminal">
<Tab name="PowerShell">

1. Copy the following command.
1. Replace `<sdk_zip_path>` with the path to the bundle you downloaded.
1. Replace `<destination_directory_path>` 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 <sdk_zip_path> -DestinationPath <destination_directory_path>
```

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
</Tab>
<Tab name="Command prompt">
Comment thread
sfshaza2 marked this conversation as resolved.

1. Copy the following command.
1. Replace `<sdk_zip_path>` with the path to the bundle you downloaded.
1. Replace `<destination_directory_path>` with the path to the
folder you want the extracted SDK to be in.
1. Run the edited command in Command prompt:
Comment thread
sfshaza2 marked this conversation as resolved.

```bat
tar -xf <sdk_zip_path> -C <destination_directory_path>
```

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"
```

</Tab>
</Tabs>

:::note
If the `flutter.bat` file is missing from the `bin` directory
after extraction, your antivirus software might have quarantined it.
Expand Down Expand Up @@ -247,12 +274,12 @@ For details, check out the
$ unzip <sdk_zip_path> -d <destination_directory_path>
```

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}
Expand Down Expand Up @@ -284,12 +311,12 @@ For details, check out the
$ tar -xf <sdk_zip_path> -C <destination_directory_path>
```

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}
Expand Down
Loading