Files
Tanami_App/lib/features/contactAdmin/presentation/widgets/top_section.dart
2024-06-11 16:38:30 +05:30

28 lines
659 B
Dart

import 'package:flutter/material.dart';
import 'package:flutter_svg/svg.dart';
import 'package:gap/gap.dart';
import '../../../../core/styles/app_color.dart';
import '../../../../core/styles/app_images.dart';
import '../../../../core/styles/app_text.dart';
import '../../../../shared/components/text_widget.dart';
Widget topSection() {
return Column(
children: [
const Gap(85),
Center(
child: SvgPicture.asset(
AppImages.welcomeLogo,
),
),
const Gap(24),
TextWidget().text17W700(
AppText.weAreHereToHelp,
clr: AppColor.textLabelColor,
),
const Gap(10),
],
);
}