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:
committed by
Andrew Brogdon
parent
9241a062bc
commit
8d1e751050
@@ -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'),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user