Files
flutter_server_box/lib/view/page/home/appbar.dart
2024-09-21 22:37:42 +08:00

21 lines
457 B
Dart

part of 'home.dart';
final class _AppBar extends StatelessWidget implements PreferredSizeWidget {
final double paddingTop;
const _AppBar(this.paddingTop);
@override
Widget build(BuildContext context) {
return SizedBox(
height: paddingTop,
child: isIOS
? const Center(child: Text(BuildData.name, style: UIs.text15Bold))
: null,
);
}
@override
Size get preferredSize => Size.fromHeight(paddingTop);
}