2024-03-18 13:23:58 +08:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
class HomePage extends StatelessWidget {
|
|
|
|
const HomePage({super.key});
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2024-03-19 08:59:08 +08:00
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(title: Text('首页')),
|
|
|
|
body: SizedBox(child: Text('sss')),
|
|
|
|
);
|
2024-03-18 13:23:58 +08:00
|
|
|
}
|
|
|
|
}
|