You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
538 B
18 lines
538 B
// lib/modules/home/views/home_page.dart |
|
|
|
import 'package:flutter/material.dart'; |
|
import 'package:get/get.dart'; |
|
import 'package:problem_check_system/app/core/widgets/custom_app_bar.dart'; |
|
import 'package:problem_check_system/app/features/home/controllers/home_controller.dart'; |
|
|
|
class HomePage extends GetView<HomeController> { |
|
const HomePage({super.key}); |
|
|
|
@override |
|
Widget build(BuildContext context) { |
|
return Scaffold( |
|
appBar: CustomAppBar(titleName: "首页"), |
|
body: Center(child: Text("首页")), |
|
); |
|
} |
|
}
|
|
|