24 lines
479 B
Dart
24 lines
479 B
Dart
import 'package:flutter/material.dart';
|
|
import './pages/home_page.dart';
|
|
|
|
void main() {
|
|
runApp(const MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
// 移除debug标签
|
|
return MaterialApp(
|
|
debugShowCheckedModeBanner: false,
|
|
title: '记账本',
|
|
theme: ThemeData(
|
|
primarySwatch: Colors.blue,
|
|
),
|
|
home: const HomePage(),
|
|
);
|
|
}
|
|
}
|