mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-08-25 15:59:39 +00:00
27 lines
643 B
Dart
27 lines
643 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import '../../../../utils/resource_manager/color_manager.dart';
|
|
|
|
class BookingAppBar extends StatelessWidget implements PreferredSizeWidget {
|
|
const BookingAppBar({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return AppBar(
|
|
backgroundColor: Colors.transparent,
|
|
centerTitle: true,
|
|
leading: Text(
|
|
'Booking',
|
|
style: TextStyle(
|
|
color: ColorsManager.blueColor1,
|
|
fontSize: 15,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
@override
|
|
Size get preferredSize => const Size.fromHeight(kToolbarHeight);
|
|
}
|