mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
20 lines
485 B
Dart
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'),
|
|
);
|
|
}
|
|
}
|