Files
flutter_server_box/lib/app.dart
2021-09-14 15:53:51 +08:00

20 lines
485 B
Dart

import 'package:flutter/material.dart';
import 'package:toolbox/view/page/home.dart';
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'ToolBox',
theme: ThemeData(
primarySwatch: Colors.blue,
),
darkTheme: ThemeData.dark(),
home: const MyHomePage(title: 'ToolBox'),
);
}
}