Skip to content

Commit 9f224c4

Browse files
authored
isolate_example: Update filenames in README.md (#634)
1 parent 9caf122 commit 9f224c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

isolate_example/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@ A sample application that demonstrate best practices when using [`isolates`](htt
1111

1212
## The important bits
1313

14-
### `page_one.dart`
14+
### `performance_page.dart`
1515

1616
Compares running a large computation on the main isolate with running the same calculation
1717
on a second isolate. When the main isolate is used, Flutter is unable to render new frames, and
1818
the `SmoothAnimationWidget`'s animation freezes.
19-
### `page_two.dart`
19+
### `infinite_process_page.dart`
2020

2121
Creates an isolate used to run an infinite loop that sums batches of 100M randomly generated
2222
numbers at a time. Users can start, terminate, pause, and resume the isolate, as well as modify
2323
how the calculation is performed.
2424

25-
### `page_three.dart`
25+
### `data_transfer_page.dart`
2626

2727
Demonstrates how expensive it is to move large amounts of data between isolates and a
2828
better alternative to move data. This page creates an isolate that can add up a list of numbers

0 commit comments

Comments
 (0)