mirror of
https://github.com/sadaks-me/chevrolet_app
synced 2024-12-23 04:14:58 -06:00
19 lines
455 B
Dart
19 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(),
|
|
);
|
|
}
|
|
}
|