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
4 changes: 2 additions & 2 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ _PRs or commits this PR depends on (if any):_

## Presubmit checklist

- [ ] **If you are unwilling, or unable, to sign the CLA, even for a _tiny_, one-word PR, please file an issue instead of a PR.** - [ ] If this PR is not meant to land until a future stable release, mark it as draft with an explanation.
- [ ] This PR doesn't contain automatically generated corrections (generated by Grammarly or similar).
- [ ] If you are unwilling, or unable, to sign the CLA, even for a _tiny_, one-word PR, please file an issue instead of a PR.
- [ ] If this PR is not meant to land until a future stable release, mark it as draft with an explanation.
- [ ] This PR follows the [Google Developer Documentation Style Guidelines](https://developers.google.com/style)—for example, it doesn't use _i.e._ or _e.g._, and it avoids _I_ and _we_ (first-person pronouns).
- [ ] This PR uses [semantic line breaks](https://github.com/dart-lang/site-shared/blob/main/doc/writing-for-dart-and-flutter-websites.md#semantic-line-breaks)
of 80 characters or fewer.
2 changes: 1 addition & 1 deletion src/content/app-architecture/design-patterns/command.md
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ Below, you can find the full `Command` class
as implemented in the [Compass App example][]
for the Flutter architecture guidelines.
It also uses the [`Result` class][]
to determine if the action completed successfuly or with an error.
to determine if the action completed successfully or with an error.

This implementation also includes two types of commands,
a `Command0`, for actions without parameters,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ hiding this third-party dependency from the rest of the application

:::note
A third-party dependency is a way to refer to packages and plugins
eveloped by other developers outside your organization.
developed by other programmers outside of your organization.
:::

<?code-excerpt "lib/data/services/shared_preferences_service.dart (SharedPreferencesService)"?>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ This allows your application to run the synchronization process
in the background even when the application is not running.

:::note
Running background operations continuosly
Running background operations continuously
can drain the device battery dramatically,
and some devices limit the background processing capabilities,
so this approach needs to be tuned
Expand Down
2 changes: 1 addition & 1 deletion src/content/cookbook/design/orientation.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ If you're interested in the orientation of the screen,
rather than the amount of space available to the parent,
use `MediaQuery.orientationOf(context)` instead of an
`OrientationBuilder` widget.
Using `MediaQuery.orientationOf` as a way to orignize ui
Using `MediaQuery.orientationOf` as a way to organize UI
is [discouraged][]. Instead use `MediaQuery.sizeOf(context)`
:::

Expand Down
4 changes: 2 additions & 2 deletions src/content/get-started/flutter-for/compose-devs.md
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ The following are roughly equivalent Compose and Flutter code for using a font f
as listed above.

```kotlin
// Font files bunded with app
// Font files bundled with app
val firaSansFamily = FontFamily(
Font(R.font.firasans_regular, FontWeight.Normal),
// ...
Expand Down Expand Up @@ -778,7 +778,7 @@ After instantiating a provider that references the special strings for the font
you would use the same `FontFamily` declaration.

```kotlin
// Font files bunded with app
// Font files bundled with app
val provider = GoogleFont.Provider(
providerAuthority = "com.google.android.gms.fonts",
providerPackage = "com.google.android.gms",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ glue code.
[`MethodChannel`][methodchannels-api-docs]s are an alternate
way Flutter apps can invoke arbitrary native code.
Unlike the FFI solution described in the previous step,
MethodChannels are always asychronous, which
MethodChannels are always asynchronous, which
might or might not matter to you, depending on your use case. As
with FFI and direct calls to native code, using a `MethodChannel`
requires a small amount of glue code to translate your Dart objects
Expand Down
2 changes: 1 addition & 1 deletion src/content/platform-integration/web/wasm.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const isRunningWithWasm = bool.fromEnvironment('dart.tool.dart2wasm');
```

Alternatively, you can use differences in number representations
to test whether the native (Wasm) number representaton is used.
to test whether the native (Wasm) number representation is used.

```dart
final isRunningWithWasm = identical(double.nan, double.nan);
Expand Down
2 changes: 1 addition & 1 deletion src/content/tools/devtools/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ in the [DevTools issue tracker][]. Thanks!

## DevTools versioning

DevTools is distrubited as part of the Flutter SDK. To get access to the latest
DevTools is distributed as part of the Flutter SDK. To get access to the latest
DevTools functionality, run `flutter upgrade` to get the most up-to-date version
of Flutter. To access DevTools features before they hit the Flutter `stable`
channel, consider switching to the `beta` or `main` channels.
Expand Down
2 changes: 1 addition & 1 deletion src/content/tools/property-editor.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ properties of interest.
* Use the filter menu button to open the filter options. Check "Only
include properties that are set in the code."
* This hides all properties that have not been explicitly set in your
code, allowing you to focus only on the properties you have explictly set.
code, allowing you to focus only on the properties you have explicitly set.

![Filter input with filter menu button highlighted](/assets/images/docs/tools/devtools/property-editor-filter-menu-button.png){:width="500px"}

Expand Down
2 changes: 1 addition & 1 deletion src/content/tools/pubspec.md
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ flutter:
```

> NOTE: As of [#168433]({{site.github}}/flutter/flutter/pull/168433) on the
> `main` channel, this propery has moved to the [`config`](#config) section:
> `main` channel, this property has moved to the [`config`](#config) section:
>
> ```yaml title="pubspec.yaml"
> flutter:
Expand Down
Loading