2025-07-11 11:01:27 +08:00
|
|
|
import 'package:flutter/material.dart';
|
2025-07-14 08:34:51 +08:00
|
|
|
import 'package:qhdkfq_regulatory_flutter/tools/my_appbar.dart';
|
2025-07-11 11:01:27 +08:00
|
|
|
|
|
|
|
class ActionTaskPage extends StatelessWidget {
|
|
|
|
const ActionTaskPage({super.key});
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2025-07-14 08:34:51 +08:00
|
|
|
return Scaffold(
|
|
|
|
appBar: MyAppbar(title: "行动任务详情"),
|
|
|
|
body: SafeArea(child: SizedBox()),
|
|
|
|
);
|
2025-07-11 11:01:27 +08:00
|
|
|
}
|
|
|
|
}
|