import 'package:flutter/material.dart'; import 'splash.dart'; const String _name = "Ivan Murashov"; void main() { runApp(new Checker()); } class Checker extends StatelessWidget { @override Widget build(BuildContext context) { return new MaterialApp(title: "DemoApp", home: new SplashScreen()); } } abstract class BaseState extends State { void faq() { } void logout() { } }