-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Fixed a slew of bugs filed against master #1470
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -39,7 +39,7 @@ In the Flutter Console, run the following command to see if there are any | |
| dependencies you need to install to complete the setup: | ||
|
|
||
| ```terminal | ||
| $ flutter doctor | ||
| $ flutter doctor [-v] | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The prose before this line contains "run the following command", but by adding
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This point wasn't addressed. |
||
| ``` | ||
|
|
||
| This command checks your environment and displays a report to the terminal | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -34,7 +34,7 @@ | |
| 1. Add the `flutter` tool to your path: | ||
|
|
||
| ```terminal | ||
| $ export PATH=`pwd`/flutter/bin:$PATH | ||
| $ export PATH=$PATH:`pwd`/flutter/bin | ||
| ``` | ||
|
|
||
| The above command sets your `PATH` variable temporarily, for the current terminal | ||
|
|
@@ -51,7 +51,7 @@ Run the following command to see if there are any dependencies you need to | |
| install to complete the setup: | ||
|
|
||
| ```terminal | ||
| $ flutter doctor | ||
| $ flutter doctor [-v] | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See earlier comment about this.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This point wasn't addressed.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Well, this PR seemed to be messed up, too. So annoying. |
||
| ``` | ||
|
|
||
| This command checks your environment and displays a report to the terminal | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,10 +3,12 @@ | |
| ## Create the app {#create-app} | ||
|
|
||
| 1. Select **File > New Flutter Project**. | ||
| 1. Select **Flutter application** as the project type, and press **Next**. | ||
| 1. Enter a project name, such as `myapp`, and press **Next**. | ||
| 1. Select **Flutter application** as the project type, and press Next. | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. AFAIK, per guidelines, UI elements like Next should be in bold.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This point wasn't addressed. |
||
| 1. Make sure that the **Flutter SDK Path** text field specifies the | ||
| location of the SDK. Install the SDK if you haven't yet done so. | ||
| 1. Enter a project name (for example, `myapp`), and press Next. | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ditto, Next in bold
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This point wasn't addressed. |
||
| 1. Click **Finish**. | ||
| 1. Wait for Android Studio to install the SDK and create the project. | ||
| 1. Wait for Android Studio to install the SDK, and create the project. | ||
|
|
||
| The above commands create a Flutter project directory called `myapp` that | ||
| contains a simple demo app that uses [Material Components][]. | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about putting this in an issue (or our shared doc) instead of embedding this in the docs page?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, definitely. I was just throwing out ideas when preparing for our last stakeholder meeting.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The to-do list is still in the doc.