Files
checker/lib/main.dart

17 lines
445 B
Dart
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import 'package:flutter/material.dart';
import 'package:checker/screens/splash.dart';
import 'consts.dart';
/// Точка входа в приложение.
void main() {
runApp(new Checker());
}
// TODO: Запрашивать appName у платформы
class Checker extends StatelessWidget {
@override Widget build(BuildContext context) {
return new MaterialApp(
title: appName,
home: new SplashScreen());
}
}