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

Added the main animation for page 1 (#94)

This commit is contained in:
Branden Taylor
2019-06-20 22:11:23 -07:00
committed by Andrew Brogdon
parent 9241a062bc
commit 8d1e751050
4 changed files with 154 additions and 27 deletions

View File

@@ -14,6 +14,10 @@
import 'package:flutter/material.dart';
import 'page_one.dart';
import 'page_two.dart';
import 'page_three.dart';
void main() {
runApp(StartApp());
}
@@ -47,30 +51,3 @@ class StartApp extends StatelessWidget {
);
}
}
class PerformancePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Center(
child: Text('Welcome to the Performance Page'),
);
}
}
class InfiniteProcessPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Center(
child: Text('Welcome to the Infinite Process Page'),
);
}
}
class DataTransferPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Center(
child: Text('Welcome to the Data Transfer Page'),
);
}
}