Skip to content

Commit ef96f99

Browse files
authored
Make background parsing a little more platform agnostic. (#11689)
_Description of what this PR is changing or adding, and why:_ A tiny nit fix to make this topic platform agnostic. _Issues fixed by this PR (if any):_ _PRs or commits this PR depends on (if any):_ ## Presubmit checklist - [x] This PR is marked as draft with an explanation if not meant to land until a future stable release. - [x] This PR doesn’t contain automatically generated corrections (Grammarly or similar). - [x] 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). - [x] 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.
1 parent 9b70bc9 commit ef96f99

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/content/cookbook/networking/background-parsing.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@ If this work takes more than 16 milliseconds,
1616
your users experience jank.
1717

1818
To avoid jank, you need to perform expensive computations
19-
like this in the background.
20-
On Android, this means scheduling work on a different thread.
21-
In Flutter, you can use a separate [Isolate][].
19+
like this in the background, using a separate [Isolate][].
2220
This recipe uses the following steps:
2321

2422
1. Add the `http` package.

0 commit comments

Comments
 (0)