2024-06-06 14:51:31 +05:30
|
|
|
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';
|
2024-07-10 07:32:29 +05:30
|
|
|
import '../../../../core/utils/language/localizations_delegate.dart';
|
2024-06-06 14:51:31 +05:30
|
|
|
import '../../../../shared/components/text_widget.dart';
|
|
|
|
|
|
2024-07-10 07:32:29 +05:30
|
|
|
Widget topSection(BuildContext context) {
|
|
|
|
|
var localizations = AppLocalizations.of(context);
|
2024-06-06 14:51:31 +05:30
|
|
|
return Column(
|
|
|
|
|
children: [
|
|
|
|
|
const Gap(85),
|
|
|
|
|
Center(
|
|
|
|
|
child: SvgPicture.asset(
|
2024-06-11 16:38:30 +05:30
|
|
|
AppImages.welcomeLogo,
|
2024-06-06 14:51:31 +05:30
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
const Gap(24),
|
|
|
|
|
TextWidget().text17W700(
|
2024-07-10 07:32:29 +05:30
|
|
|
localizations.translate(AppText.weAreHereToHelp),
|
2024-06-06 14:51:31 +05:30
|
|
|
clr: AppColor.textLabelColor,
|
|
|
|
|
),
|
|
|
|
|
const Gap(10),
|
|
|
|
|
],
|
|
|
|
|
);
|
|
|
|
|
}
|