1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 22:09:06 +00:00

The rest of page one for isolate_example

This commit is contained in:
Branden Taylor
2019-06-25 11:28:13 -07:00
committed by Andrew Brogdon
parent 599c865629
commit e4b4b35182
5 changed files with 363 additions and 21 deletions

View File

@@ -18,9 +18,7 @@ import 'page_one.dart';
import 'page_two.dart';
import 'page_three.dart';
void main() {
runApp(StartApp());
}
void main() => runApp(new MaterialApp(home: new StartApp()));
class StartApp extends StatelessWidget {
@override
@@ -42,7 +40,7 @@ class StartApp extends StatelessWidget {
body: TabBarView(
children: [
PerformancePage(),
InfiniteProcessPage(),
InfiniteProcessPageStarter(),
DataTransferPage(),
],
),