18 Widget
build(BuildContext context) {
26 decoration: BoxDecoration(
27 gradient: LinearGradient(
28 begin: Alignment.topLeft,
29 end: Alignment.bottomRight,
31 Theme.of(context).colorScheme.primary,
32 Theme.of(context).colorScheme.secondary,
35 borderRadius: BorderRadius.circular(10),
40 mainAxisAlignment: MainAxisAlignment.spaceBetween,
43 'assets/svgs/logo_aidra.svg',
45 colorFilter: ColorFilter.mode(
46 Theme.of(context).colorScheme.onPrimary,
60 SizedBox(height: 15.sp),
63 crossAxisAlignment: CrossAxisAlignment.end,
64 mainAxisAlignment: MainAxisAlignment.center,
68 style: Theme.of(context).textTheme.bodySmall?.copyWith(
69 color: Theme.of(context).colorScheme.onPrimary,
73 SizedBox(height: 5.sp),
79 style: Theme.of(context).textTheme.displayLarge?.copyWith(
81 color: Theme.of(context).colorScheme.onPrimary,
86 style: Theme.of(context).textTheme.bodySmall?.copyWith(
87 color: Theme.of(context).colorScheme.onPrimary,
93 SizedBox(height: 23.sp),
95 alignment: Alignment.bottomRight,
96 child: SvgPicture.asset(
99 colorFilter: ColorFilter.mode(
100 Theme.of(context).colorScheme.onPrimary,