1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-09 06:18:49 +00:00
Files
samples/web/dad_jokes/lib/main.dart
2019-05-07 13:32:08 -07:00

18 lines
372 B
Dart

import 'package:flutter_web/material.dart';
import 'main_page.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Dad Jokes',
theme: ThemeData(
primarySwatch: Colors.deepOrange,
),
home: MainPage(title: 'Dad Jokes'),
);
}
}