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

isolate sample maintenance (#167)

* isolate sample maintenance

- use slightly more meaningful names
- rename files
- misc small readability changes

* update MAINTENANCE.md

* fix gh username

* formatting

* upgrade dependencies
This commit is contained in:
John Ryan
2019-11-21 15:33:32 -08:00
committed by GitHub
parent 23d71e057d
commit f325e685d1
6 changed files with 83 additions and 90 deletions

View File

@@ -14,19 +14,19 @@
import 'package:flutter/material.dart';
import 'page_one.dart';
import 'page_three.dart';
import 'page_two.dart';
import 'data_transfer_page.dart';
import 'infinite_process_page.dart';
import 'performance_page.dart';
void main() {
runApp(
MaterialApp(
home: StartApp(),
home: HomePage(),
),
);
}
class StartApp extends StatelessWidget {
class HomePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(