You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.5 KiB
Dart
50 lines
1.5 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_svg/flutter_svg.dart';
|
|
import 'package:queuing_system/core/config/config.dart';
|
|
import 'package:queuing_system/utils/utils.dart';
|
|
import 'package:queuing_system/widget/data_display/app_texts_widget.dart';
|
|
|
|
class AppHeader extends StatelessWidget with PreferredSizeWidget {
|
|
const AppHeader({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
padding: const EdgeInsets.only(
|
|
left: 0,
|
|
right: 5,
|
|
),
|
|
decoration: BoxDecoration(color: AppGlobal.appRedColor, border: const Border(bottom: BorderSide(color: Color(0xFFEFEFEF)))),
|
|
child: Container(
|
|
height: 100,
|
|
padding: const EdgeInsets.only(
|
|
left: 20,
|
|
right: 20,
|
|
bottom: 0,
|
|
),
|
|
child: Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: [
|
|
InkWell(
|
|
onTap: () {},
|
|
child: const AppText(
|
|
" Current Serving",
|
|
color: Colors.white,
|
|
fontFamily: 'Poppins-SemiBold.ttf',
|
|
),
|
|
),
|
|
SvgPicture.asset(
|
|
"assets/images/hmglogo.svg",
|
|
height: Utils.getHeight() * 0.5,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
@override
|
|
Size get preferredSize => Size(double.maxFinite, Utils.getHeight());
|
|
}
|