blob: 207ef3d87b2f450ec26b04a53777f205ce803f23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import 'package:flutter/material.dart';
import 'package:flutter_homescreen/homescreen.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Homescreen',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: Homescreen(title: 'Flutter Homescreen'),
);
}
}
|