mirror of
https://github.com/sadaks-me/chevrolet_app
synced 2025-01-09 19:03:14 +00:00
20 lines
455 B
Dart
20 lines
455 B
Dart
|
import 'package:chevrolet/view/home_page.dart';
|
||
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
void main() => runApp(new MyApp());
|
||
|
|
||
|
class MyApp extends StatelessWidget {
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return new MaterialApp(
|
||
|
title: 'Flutter Demo',
|
||
|
theme: new ThemeData(
|
||
|
primarySwatch: Colors.blue,
|
||
|
fontFamily: 'Fette'
|
||
|
),
|
||
|
debugShowCheckedModeBanner: false,
|
||
|
home: new HomePage(),
|
||
|
);
|
||
|
}
|
||
|
}
|