SplashScreen + первая стадия экрана регистрации

This commit is contained in:
Ivan Murashov
2017-07-14 17:29:01 +03:00
parent ac91be07f8
commit 39b4f1407c
7 changed files with 103 additions and 23 deletions

View File

@@ -1,5 +1,5 @@
import 'package:flutter/material.dart';
import 'registration.dart';
import 'splash.dart';
const String _name = "Ivan Murashov";
@@ -9,6 +9,17 @@ void main() {
class Checker extends StatelessWidget {
@override Widget build(BuildContext context) {
return new MaterialApp(title: "DemoApp", home: new RegistrationScreen());
return new MaterialApp(title: "DemoApp", home: new SplashScreen());
}
}
abstract class BaseState<T> extends State<StatefulWidget> {
void faq() {
}
void logout() {
}
}