mobile_skt/lib/screens/home/home.dart

14 lines
286 B
Dart
Raw Normal View History

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')),
);
}
}