import 'package:flutter/material.dart'; import 'package:chicken_farm/components/custom_app_bar.dart'; class CheckinPage extends StatelessWidget { const CheckinPage({super.key}); @override Widget build(BuildContext context) { return Scaffold( appBar: const CustomAppBar( title: '点检签到', showBackButton: true, // 子页面显示返回按钮 ), body: const Center(child: Text('点检签到页面')), ); } }