mirror of
https://github.com/rjNemo/quotes
synced 2026-06-06 02:26:40 +00:00
20 lines
414 B
Dart
20 lines
414 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'home.dart';
|
|
import 'quote.dart';
|
|
|
|
void main() => runApp(App());
|
|
|
|
class App extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: 'Flutter Demo',
|
|
theme: ThemeData(
|
|
primarySwatch: Colors.deepOrange,
|
|
),
|
|
home: QuotePage(),
|
|
// home: HomePage(title: 'Counter App'),
|
|
);
|
|
}
|
|
}
|