Conversation
sfshaza2
left a comment
There was a problem hiding this comment.
A few minor comments but, otherwise, lgtm
|
|
||
| Flutter is an open source project hosted [on | ||
| GitHub](https://github.com/flutter/flutter), and making the documentation better | ||
| helps everyone! So for the month of November, we’re extending a special |
|
|
||
| **Respond within three days after being assigned** | ||
|
|
||
| If we don't hear back from you, we might need to assign someone else. |
There was a problem hiding this comment.
=> assign it to someone else.
|
|
||
| **One issue at a time** | ||
|
|
||
| If you're already working on an issue, wait until it's closed before asking for |
| * The behavior of the widget in certain situations | ||
| * Other important information about the widget | ||
|
|
||
| See the [Documentation section](https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo#documentation-dartdocs-javadocs-etc) of the Flutter Style Guide and [Effective Dart: Documentation](https://dart.dev/guides/language/effective-dart/documentation) for details on how to write great documentation. |
There was a problem hiding this comment.
Can you break this up? We use break at 80 chars or less.
| To get started, fork the SDK and use Git to fetch a local copy: | ||
|
|
||
| 1. Install dependencies listed in [Setting up the Framework development environment](https://github.com/flutter/flutter/wiki/Setting-up-the-Framework-development-environment) | ||
| 2. Fork the flutter repo [https://github.com/flutter/flutter](https://github.com/flutter/flutter). For more information, see [GitHub's official instructions](https://docs.github.com/en/free-pro-team@latest/github/getting-started-with-github/fork-a-repo). |
| 3. Clone your fork: `git clone https://github.com/<your_name_here>/flutter.git` | ||
| 4. Change directory: `cd flutter` | ||
| 5. Add an upstream remote: `git remote add upstream git@github.com:flutter/flutter.git` | ||
| 6. Run `flutter update-packages` to fetch all the Dart packages Flutter uses. |
There was a problem hiding this comment.
=> packages that Flutter uses
|
|
||
| ### Analyzing and Generating API Docs | ||
|
|
||
| Running this command from the root directory will analyze and generate the |
There was a problem hiding this comment.
=> analyzes and generates (and delete "will")
| git checkout -b update-builder-widget | ||
| git add -A | ||
| git commit -m "Update Builder API Docs" | ||
| git push origin update-builder-widget |
There was a problem hiding this comment.
Wow, you do this very differently than I do. I use vim.
There was a problem hiding this comment.
I use vim too, but the -m flag is simpler to create instructions for.
sfshaza2
left a comment
There was a problem hiding this comment.
A couple minor HTML issues but LGTM otherwise.
|
|
||
| 3. Once you are assigned, set up your environment, make the change, and submit | ||
| the pull request. If you're not sure how to do this, see the | ||
| [Quickstart](#quickstart) below. |
There was a problem hiding this comment.
Notice how the generated list goes: 1, 2, 1.
This is because you inserted an image on item #2. To get around this, I drop into HTML. So, it would look like:
- Go to...
- Leave a comment...
- Once you are assigned...
| the pull request. If you're not sure how to do this, see the | ||
| [Quickstart](#quickstart) below. | ||
|
|
||
| The [CONTRIBUTING](https://github.com/flutter/flutter/blob/master/CONTRIBUTING.md) doc has details on contributing to Flutter. |
There was a problem hiding this comment.
Break up this line, too. :)
| **Note:** Flutter API docs cannot be generated on Windows. If you are using | ||
| *Windows, you may need to download the Linux version of the SDK and use the | ||
| *[Windows Subsystem for | ||
| *Linux](https://docs.microsoft.com/en-us/windows/wsl/about). |
There was a problem hiding this comment.
This is rendering weirdly. It appears that you are trying to create a code-style note, but it doesn't work as you think it does in markdown.
Instead:
{{site.alert.note}}
Flutter API docs cannot be generated on Windows. If you are using
Windows, you may need to download the Linux version of the SDK and use the
[Windows Subsystem for
Linux](https://docs.microsoft.com/en-us/windows/wsl/about).
{{site.alert.end}}
You know, we don't actually do our links inline like this, but this is a temporary page, so I'm going to ignore that. :)
* fix typo * fix code review comments * fix number formatting * fix formatting issues * use site.alert.note * fix <aside> appearing in note * update Discord link
No description provided.