Files
flutter_server_box/lib/app.dart
LollipopKit e804ade452 添加debug
2021-09-13 14:58:08 +08:00

20 lines
480 B
Dart

import 'package:flutter/material.dart';
import 'package:toolbox/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'),
);
}
}