mobile_skt/lib/screens/home/components/custom_app_bar.dart

72 lines
2.5 KiB
Dart
Raw Normal View History

2024-03-19 11:09:07 +08:00
import 'package:flutter/material.dart';
import 'package:get/get.dart';
2024-03-19 13:27:42 +08:00
import 'package:sk_base_mobile/app_theme.dart';
2024-03-19 11:09:07 +08:00
import 'package:sk_base_mobile/constants/bg_color.dart';
2024-03-19 13:27:42 +08:00
import 'package:sk_base_mobile/constants/constants.dart';
2024-03-19 11:09:07 +08:00
import 'package:sk_base_mobile/screens/home/home_controller.dart';
2024-03-19 13:27:42 +08:00
import 'package:sk_base_mobile/store/auth.store.dart';
2024-03-19 11:09:07 +08:00
import 'package:sk_base_mobile/util/screen_adaper_util.dart';
class CustomAppBar extends StatelessWidget {
CustomAppBar({super.key});
final controller = Get.put(HomeController());
@override
Widget build(BuildContext context) {
return Padding(
2024-03-19 13:27:42 +08:00
padding: EdgeInsets.symmetric(horizontal: ScreenAdaper.width(30)),
2024-03-19 11:09:07 +08:00
child: Row(
children: [
2024-03-19 13:27:42 +08:00
if (ScreenAdaper.isLandspace()) const Spacer(),
2024-03-19 11:09:07 +08:00
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
2024-03-19 13:27:42 +08:00
TextEnum.homeWelcomeText,
2024-03-19 11:09:07 +08:00
style: Theme.of(context).textTheme.titleMedium!.copyWith(
color: Colors.black87,
fontWeight: FontWeight.w400,
height: 0,
letterSpacing: 2,
2024-03-19 13:27:42 +08:00
fontSize: ScreenAdaper.sp(25)),
2024-03-19 11:09:07 +08:00
),
Obx(
() => Text(
2024-03-19 13:27:42 +08:00
AuthStore.to.userInfo.value.username ?? '',
2024-03-19 11:09:07 +08:00
style: Theme.of(context).textTheme.titleMedium!.copyWith(
color: Colors.black,
fontWeight: FontWeight.bold,
letterSpacing: 2,
height: 0,
2024-03-19 13:27:42 +08:00
fontSize: ScreenAdaper.sp(30)),
2024-03-19 11:09:07 +08:00
),
)
],
),
const Spacer(
flex: 10,
),
Container(
2024-03-19 13:27:42 +08:00
height: ScreenAdaper.height(70),
width: ScreenAdaper.width(70),
2024-03-19 11:09:07 +08:00
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(20),
2024-03-19 13:27:42 +08:00
color: AppTheme.primaryColorLight,
boxShadow: [
2024-03-19 11:09:07 +08:00
BoxShadow(
2024-03-19 13:27:42 +08:00
color: AppTheme.primaryColor,
blurRadius: ScreenAdaper.sp(20),
offset: Offset(0, ScreenAdaper.height(10)))
2024-03-19 11:09:07 +08:00
]),
2024-03-19 13:27:42 +08:00
child: Icon(
2024-03-19 11:09:07 +08:00
Icons.account_circle_outlined,
2024-03-19 13:27:42 +08:00
size: ScreenAdaper.sp(40),
2024-03-19 11:09:07 +08:00
color: Colors.white,
),
),
if (ScreenAdaper.isLandspace()) const Spacer(),
],
),
);
}
}