checkin_page.dart 463 B

1234567891011121314151617
  1. import 'package:flutter/material.dart';
  2. import 'package:chicken_farm/components/custom_app_bar.dart';
  3. class CheckinPage extends StatelessWidget {
  4. const CheckinPage({super.key});
  5. @override
  6. Widget build(BuildContext context) {
  7. return Scaffold(
  8. appBar: const CustomAppBar(
  9. title: '点检签到',
  10. showBackButton: true, // 子页面显示返回按钮
  11. ),
  12. body: const Center(child: Text('点检签到页面')),
  13. );
  14. }
  15. }