home_view.dart 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869
  1. import 'package:clean/base/base_view.dart';
  2. import 'package:clean/module/home/home_controller.dart';
  3. import 'package:clean/module/image_picker/image_picker_util.dart';
  4. import 'package:clean/resource/assets.gen.dart';
  5. import 'package:clean/resource/string.gen.dart';
  6. import 'package:flutter/Material.dart';
  7. import 'package:flutter_screenutil/flutter_screenutil.dart';
  8. import 'package:get/get.dart';
  9. import 'package:lottie/lottie.dart';
  10. import 'package:wechat_assets_picker/wechat_assets_picker.dart';
  11. import '../../widget/multi_segment_circle_indicator.dart';
  12. class HomePage extends BaseView<HomeController> {
  13. const HomePage({super.key});
  14. @override
  15. backgroundColor() {
  16. return Color(0xFF05050D);
  17. }
  18. @override
  19. viewHeight() {
  20. return double.infinity;
  21. }
  22. @override
  23. Widget buildBody(BuildContext context) {
  24. // TODO: implement buildBody
  25. return Stack(
  26. children: [
  27. SafeArea(
  28. child: SingleChildScrollView(
  29. child: Column(
  30. children: [
  31. titleCard(),
  32. storageCard(),
  33. similarCard(),
  34. quickPhotoCard(),
  35. peopleCard(),
  36. // locationsCard(),
  37. screenshotsAndBlurryCard(),
  38. SizedBox(height: 40.h),
  39. ],
  40. )),
  41. ),
  42. IgnorePointer(
  43. child: Assets.images.bgHome.image(
  44. width: 360.w,
  45. ),
  46. ),
  47. ],
  48. );
  49. }
  50. Widget titleCard() {
  51. return Padding(
  52. padding: EdgeInsets.only(top: 0.h, left: 16.w, right: 16.w),
  53. child: Row(
  54. mainAxisAlignment: MainAxisAlignment.spaceBetween,
  55. children: [
  56. Text(
  57. StringName.appName,
  58. style: TextStyle(
  59. color: Colors.white,
  60. fontSize: 24.sp,
  61. fontWeight: FontWeight.w900,
  62. ),
  63. ),
  64. GestureDetector(
  65. onTap: controller.titleVipClick,
  66. child: Assets.images.iconHomeTitleVip
  67. .image(width: 60.8.w, height: 20.h),
  68. ),
  69. ],
  70. ),
  71. );
  72. }
  73. Widget storageCard() {
  74. return Container(
  75. margin: EdgeInsets.only(top: 20.h),
  76. padding: EdgeInsets.symmetric(horizontal: 16.w),
  77. width: 328.w,
  78. height: 146.h,
  79. decoration: ShapeDecoration(
  80. color: Colors.white.withValues(alpha: 0.10),
  81. shape: RoundedRectangleBorder(
  82. borderRadius: BorderRadius.circular(14.r),
  83. ),
  84. ),
  85. child: Row(
  86. children: [
  87. circularChartCard(),
  88. SizedBox(
  89. width: 14.w,
  90. ),
  91. storageInfoCard(),
  92. ],
  93. ));
  94. }
  95. Widget circularChartCard() {
  96. return SizedBox(
  97. width: 120.w,
  98. child: Obx(() {
  99. final isScanned = controller.isStorageScanned.value;
  100. if (!isScanned) {
  101. return MultiSegmentCircleIndicator(
  102. strokeWidth: 12.r,
  103. segments: [PieData("Scanning", 100, Colors.grey.withOpacity(0.1))],
  104. subtitle: "Scanning...",
  105. animationDuration: Duration.zero,
  106. centerValue: 0,
  107. );
  108. }
  109. return MultiSegmentCircleIndicator(
  110. key: ValueKey(isScanned),
  111. strokeWidth: 12.r,
  112. segments: controller.pieDataList,
  113. subtitle: "used",
  114. centerValue: controller.usedSpacePercentage,
  115. animationDuration: const Duration(seconds: 2),
  116. );
  117. }),
  118. );
  119. }
  120. Widget storageInfoCard() {
  121. return Column(
  122. crossAxisAlignment: CrossAxisAlignment.start,
  123. children: [
  124. SizedBox(
  125. height: 24.h,
  126. ),
  127. Text(
  128. 'Storage Used',
  129. style: TextStyle(
  130. color: Colors.white,
  131. fontSize: 16.sp,
  132. fontWeight: FontWeight.w500,
  133. ),
  134. ),
  135. Row(
  136. children: [
  137. Obx(() {
  138. return Text.rich(
  139. TextSpan(
  140. children: [
  141. TextSpan(
  142. text: ImagePickerUtil.formatSize(
  143. controller.usedSpace.value),
  144. style: TextStyle(
  145. color: Color(0xFFFC4C4F),
  146. fontSize: 13.sp,
  147. fontWeight: FontWeight.w400,
  148. ),
  149. ),
  150. TextSpan(
  151. text: 'GB',
  152. style: TextStyle(
  153. color: Color(0xFFFC4C4F),
  154. fontSize: 13.sp,
  155. fontWeight: FontWeight.w500,
  156. ),
  157. ),
  158. ],
  159. ),
  160. textAlign: TextAlign.center,
  161. );
  162. }),
  163. Text(
  164. ' / ',
  165. style: TextStyle(
  166. color: Colors.white.withValues(alpha: 0.6000000238418579),
  167. fontSize: 13.sp,
  168. fontWeight: FontWeight.w500,
  169. ),
  170. ),
  171. Obx(() {
  172. return Text.rich(
  173. TextSpan(
  174. children: [
  175. TextSpan(
  176. text: ImagePickerUtil.formatSize(
  177. controller.totalSpace.value),
  178. style: TextStyle(
  179. color:
  180. Colors.white.withValues(alpha: 0.6000000238418579),
  181. fontSize: 13.sp,
  182. fontWeight: FontWeight.w400,
  183. ),
  184. ),
  185. TextSpan(
  186. text: 'GB',
  187. style: TextStyle(
  188. color:
  189. Colors.white.withValues(alpha: 0.6000000238418579),
  190. fontSize: 13.sp,
  191. fontWeight: FontWeight.w500,
  192. ),
  193. ),
  194. ],
  195. ),
  196. textAlign: TextAlign.center,
  197. );
  198. }),
  199. ],
  200. ),
  201. SizedBox(
  202. height: 10.h,
  203. ),
  204. Row(
  205. crossAxisAlignment: CrossAxisAlignment.start,
  206. children: [
  207. Container(
  208. margin: EdgeInsets.only(top: 7.h),
  209. width: 6.w,
  210. height: 6.h,
  211. decoration: ShapeDecoration(
  212. color: Color(0xFF0279FB),
  213. shape: OvalBorder(),
  214. ),
  215. ),
  216. SizedBox(
  217. width: 3.5.w,
  218. ),
  219. Column(
  220. crossAxisAlignment: CrossAxisAlignment.start,
  221. children: [
  222. Text(
  223. 'Photos',
  224. textAlign: TextAlign.start,
  225. style: TextStyle(
  226. color: Colors.white,
  227. fontSize: 14.sp,
  228. fontWeight: FontWeight.w500,
  229. ),
  230. ),
  231. Obx(() {
  232. return Text(
  233. '${controller.photoSpaceStr}',
  234. textAlign: TextAlign.start,
  235. style: TextStyle(
  236. color: Colors.white.withValues(alpha: 0.6499999761581421),
  237. fontSize: 13.sp,
  238. fontWeight: FontWeight.w400,
  239. ),
  240. );
  241. }),
  242. ],
  243. ),
  244. SizedBox(
  245. width: 10.w,
  246. ),
  247. Container(
  248. margin: EdgeInsets.only(top: 7.h),
  249. width: 6.w,
  250. height: 6.h,
  251. decoration: ShapeDecoration(
  252. color: Color(0xFFEE4933),
  253. shape: OvalBorder(),
  254. ),
  255. ),
  256. SizedBox(
  257. width: 3.5.w,
  258. ),
  259. Column(
  260. crossAxisAlignment: CrossAxisAlignment.start,
  261. children: [
  262. Text(
  263. 'iphone',
  264. textAlign: TextAlign.start,
  265. style: TextStyle(
  266. color: Colors.white,
  267. fontSize: 14.sp,
  268. fontWeight: FontWeight.w500,
  269. ),
  270. ),
  271. Obx(() {
  272. return Text(
  273. '${controller.usedSpace.toStringAsFixed(1)} GB',
  274. textAlign: TextAlign.start,
  275. style: TextStyle(
  276. color: Colors.white.withValues(alpha: 0.6499999761581421),
  277. fontSize: 13.sp,
  278. fontWeight: FontWeight.w400,
  279. ),
  280. );
  281. }),
  282. ],
  283. ),
  284. ],
  285. ),
  286. ],
  287. );
  288. }
  289. Widget similarCard() {
  290. return GestureDetector(
  291. onTap: () {
  292. controller.similarCleanClick();
  293. },
  294. child: Container(
  295. width: 328.w,
  296. height: 155.h,
  297. margin: EdgeInsets.only(top: 20.h),
  298. padding: EdgeInsets.symmetric(horizontal: 16.w),
  299. decoration: ShapeDecoration(
  300. color: Colors.white.withValues(alpha: 0.12),
  301. shape: RoundedRectangleBorder(
  302. borderRadius: BorderRadius.circular(16.r),
  303. ),
  304. ),
  305. child: Column(
  306. crossAxisAlignment: CrossAxisAlignment.start,
  307. children: [
  308. SizedBox(height: 12.h),
  309. Row(
  310. mainAxisAlignment: MainAxisAlignment.spaceBetween,
  311. children: [
  312. Column(
  313. crossAxisAlignment: CrossAxisAlignment.start,
  314. children: [
  315. Text(
  316. 'Similar',
  317. style: TextStyle(
  318. color: Colors.white,
  319. fontSize: 16.sp,
  320. fontWeight: FontWeight.w700,
  321. ),
  322. ),
  323. Obx(() {
  324. return Text.rich(
  325. TextSpan(
  326. children: [
  327. TextSpan(
  328. text:
  329. "${ImagePickerUtil.similarPhotoCount.value}",
  330. style: TextStyle(
  331. color: Colors.white,
  332. fontSize: 12.sp,
  333. fontWeight: FontWeight.w400,
  334. ),
  335. ),
  336. TextSpan(
  337. text: ' duplicate photos detected',
  338. style: TextStyle(
  339. color: Colors.white
  340. .withValues(alpha: 0.800000011920929),
  341. fontSize: 12.sp,
  342. fontWeight: FontWeight.w400,
  343. ),
  344. ),
  345. ],
  346. ),
  347. );
  348. }),
  349. ],
  350. ),
  351. Obx(() {
  352. return CleanUpButton(
  353. label: !controller.isSimilarScanned.value
  354. ? 'Scanning...'
  355. : 'Clean up',
  356. size: ImagePickerUtil.formatFileSize(
  357. ImagePickerUtil.similarPhotosSize.value),
  358. onTap: () {
  359. controller.similarCleanClick();
  360. },
  361. );
  362. }),
  363. ],
  364. ),
  365. // SizedBox(height: 19.h),
  366. Spacer(),
  367. Obx(() {
  368. return Row(
  369. mainAxisAlignment: MainAxisAlignment.spaceBetween,
  370. children: List.generate(4, (index) {
  371. var image = Assets.images.iconHomeNoPhoto.image(
  372. width: 70.w * 0.45,
  373. height: 70.w * 0.45,
  374. );
  375. if (controller.similarPhotos.length > index) {
  376. image = AssetEntityImage(
  377. width: 70.w,
  378. height: 70.w,
  379. controller.similarPhotos[index],
  380. isOriginal: false,
  381. thumbnailSize: const ThumbnailSize.square(300),
  382. fit: BoxFit.cover,
  383. errorBuilder: (context, error, stackTrace) {
  384. return Assets.images.iconHomeNoPhoto.image(
  385. width: 70.w * 0.45,
  386. height: 70.w * 0.45,
  387. );
  388. });
  389. }
  390. return controller.similarPhotos.isNotEmpty
  391. ? image
  392. : ImageContainer(
  393. size: 70.w,
  394. image: Opacity(
  395. opacity: 0.22,
  396. child: Lottie.asset(Assets.anim.animNoPhoto,
  397. repeat: true, width: 100.w, height: 100.w),
  398. ),
  399. // AssetEntityImage(
  400. // width: 70.w,
  401. // height: 70.w,
  402. // controller.similarPhotos[index],
  403. // isOriginal: false,
  404. // thumbnailSize: const ThumbnailSize.square(300),
  405. // fit: BoxFit.cover,
  406. // errorBuilder: (context, error, stackTrace) {
  407. // return Assets.images.iconHomeNoPhoto.image(
  408. // width: 70.w * 0.45,
  409. // height: 70.w * 0.45,
  410. // );
  411. // },
  412. );
  413. }),
  414. );
  415. }),
  416. Spacer(),
  417. ],
  418. ),
  419. ));
  420. }
  421. Widget quickPhotoCard() {
  422. return Container(
  423. padding: EdgeInsets.symmetric(horizontal: 16.w),
  424. margin: EdgeInsets.only(top: 30.h),
  425. alignment: Alignment.centerLeft,
  426. child: Text(
  427. 'Quick Photo Clean',
  428. style: TextStyle(
  429. color: Colors.white,
  430. fontSize: 18.sp,
  431. fontWeight: FontWeight.w700,
  432. ),
  433. ),
  434. );
  435. }
  436. Widget peopleCard() {
  437. return GestureDetector(
  438. onTap: () {
  439. controller.peopleCleanClick();
  440. },
  441. child: Container(
  442. margin: EdgeInsets.only(top: 12.h),
  443. width: 328.w,
  444. height: 205.h,
  445. decoration: ShapeDecoration(
  446. color: Colors.white.withValues(alpha: 0.12),
  447. shape: RoundedRectangleBorder(
  448. borderRadius: BorderRadius.circular(14.sp),
  449. ),
  450. ),
  451. child: Stack(
  452. children: [
  453. Column(
  454. crossAxisAlignment: CrossAxisAlignment.start,
  455. children: [
  456. Spacer(),
  457. Padding(
  458. padding: EdgeInsets.only(left: 14.0.w),
  459. child: Text(
  460. 'People',
  461. style: TextStyle(
  462. color: Colors.white,
  463. fontSize: 16.sp,
  464. fontWeight: FontWeight.w700,
  465. ),
  466. ),
  467. ),
  468. Spacer(),
  469. Obx(() {
  470. return Row(
  471. mainAxisAlignment: MainAxisAlignment.spaceEvenly,
  472. children: List.generate(2, (index) {
  473. var image = Assets.images.iconHomeNoPhoto.image(
  474. width: 146.w * 0.45,
  475. height: 146.w * 0.45,
  476. );
  477. if (controller.peoplePhotos.length > index) {
  478. image = AssetEntityImage(
  479. width: 146.w,
  480. height: 146.w,
  481. controller.peoplePhotos[index],
  482. isOriginal: false,
  483. thumbnailSize: const ThumbnailSize.square(300),
  484. fit: BoxFit.cover,
  485. errorBuilder: (context, error, stackTrace) {
  486. return Assets.images.iconHomeNoPhoto.image(
  487. width: 146.w * 0.45,
  488. height: 146.w * 0.45,
  489. );
  490. });
  491. }
  492. return ImageContainer(
  493. image: controller.peoplePhotos.length > index
  494. ? image
  495. : Opacity(
  496. opacity: 0.22,
  497. child: const CircularProgressIndicator(
  498. color: Colors.white38,
  499. ),
  500. ),
  501. size: 146.w,
  502. // Image.file(
  503. // width: 146.w,
  504. // height: 146.w,
  505. // controller.peoplePhotos[index],
  506. // fit: BoxFit.cover,
  507. // ),
  508. // 可以传入不同的路径
  509. );
  510. }),
  511. );
  512. }),
  513. Spacer(),
  514. ],
  515. ),
  516. Positioned(
  517. bottom: 20.h,
  518. right: 20.w,
  519. child: Obx(() {
  520. return CleanUpButton(
  521. label: !controller.isPeopleScanned.value
  522. ? 'Scanning...'
  523. : 'Clean up',
  524. size: ImagePickerUtil.formatFileSize(
  525. ImagePickerUtil.peopleSize.value),
  526. onTap: () {
  527. controller.peopleCleanClick();
  528. },
  529. );
  530. }),
  531. ),
  532. ],
  533. ),
  534. ));
  535. }
  536. Widget locationsCard() {
  537. return GestureDetector(
  538. onTap: () {
  539. controller.locationCleanClick();
  540. },
  541. child: Container(
  542. padding: EdgeInsets.symmetric(horizontal: 12.w),
  543. margin: EdgeInsets.only(top: 14.h),
  544. width: 328.w,
  545. height: 230.h,
  546. decoration: ShapeDecoration(
  547. color: Colors.white.withValues(alpha: 0.12),
  548. shape: RoundedRectangleBorder(
  549. borderRadius: BorderRadius.circular(14.sp),
  550. ),
  551. ),
  552. child: Stack(
  553. children: [
  554. Column(
  555. crossAxisAlignment: CrossAxisAlignment.start,
  556. children: [
  557. Spacer(),
  558. Text(
  559. 'Locations',
  560. style: TextStyle(
  561. color: Colors.white,
  562. fontSize: 16.sp,
  563. fontWeight: FontWeight.w700,
  564. ),
  565. ),
  566. Spacer(),
  567. Container(
  568. width: 304.w,
  569. height: 171.h,
  570. clipBehavior: Clip.hardEdge,
  571. decoration: ShapeDecoration(
  572. color: Color(0xFF272C33),
  573. shape: RoundedRectangleBorder(
  574. borderRadius: BorderRadius.circular(12.r),
  575. ),
  576. ),
  577. child: Obx(() {
  578. return Center(
  579. child: controller.locationPhoto.value == null
  580. ? Opacity(
  581. opacity: 0.22,
  582. child: Lottie.asset(Assets.anim.animNoPhoto,
  583. repeat: true, width: 160.w, height: 160.w),
  584. )
  585. : AssetEntityImage(
  586. width: 304.w,
  587. height: 171.h,
  588. controller.locationPhoto.value!,
  589. isOriginal: false,
  590. thumbnailSize: const ThumbnailSize.square(300),
  591. fit: BoxFit.cover,
  592. errorBuilder: (context, error, stackTrace) {
  593. return Assets.images.iconHomeNoPhoto.image(
  594. width: 60.w,
  595. height: 60.h,
  596. );
  597. },
  598. ),
  599. // Image.file(
  600. // width: 304.w,
  601. // height: 171.h,
  602. // controller.locationPhoto.value!,
  603. // fit: BoxFit.cover,
  604. // ),
  605. );
  606. }),
  607. ),
  608. Spacer(),
  609. ],
  610. ),
  611. Positioned(
  612. bottom: 20.h,
  613. right: 8.w,
  614. child: Obx(() {
  615. return CleanUpButton(
  616. label: 'Clean up',
  617. size: ImagePickerUtil.formatFileSize(
  618. ImagePickerUtil.locationsSize.value),
  619. onTap: () {
  620. controller.locationCleanClick();
  621. },
  622. );
  623. }),
  624. ),
  625. ],
  626. ),
  627. ));
  628. }
  629. Widget screenshotsAndBlurryCard() {
  630. return Container(
  631. padding: EdgeInsets.symmetric(horizontal: 16.w),
  632. margin: EdgeInsets.only(top: 14.h),
  633. child: Obx(() {
  634. return Row(
  635. mainAxisAlignment: MainAxisAlignment.spaceBetween,
  636. children: [
  637. _buildCard(
  638. 'Screenshots',
  639. !controller.isScreenShotScanned.value
  640. ? 'Scanning...'
  641. : 'Clean up',
  642. ImagePickerUtil.formatFileSize(
  643. ImagePickerUtil.screenshotsSize.value),
  644. controller.screenshotPhoto.value == null
  645. ? Opacity(
  646. opacity: 0.22,
  647. child: const CircularProgressIndicator(
  648. color: Colors.white38,
  649. ),
  650. )
  651. : AssetEntityImage(
  652. width: 144.w,
  653. height: 142.h,
  654. controller.screenshotPhoto.value!,
  655. isOriginal: false,
  656. thumbnailSize: const ThumbnailSize.square(300),
  657. fit: BoxFit.cover,
  658. errorBuilder: (context, error, stackTrace) {
  659. return Assets.images.iconHomeNoPhoto.image(
  660. width: 60.w,
  661. height: 60.h,
  662. );
  663. },
  664. ),
  665. onTap: () {
  666. controller.screenshotCleanClick();
  667. },
  668. ),
  669. _buildCard(
  670. 'Blurry',
  671. !controller.isBlurryScanned.value ? 'Scanning...' : 'Clean up',
  672. ImagePickerUtil.formatFileSize(
  673. ImagePickerUtil.blurrySize.value),
  674. controller.blurryPhoto.value == null
  675. ? Opacity(
  676. opacity: 0.22,
  677. child: Lottie.asset(Assets.anim.animNoPhoto,
  678. repeat: true, width: 100.w, height: 100.w),
  679. )
  680. : AssetEntityImage(
  681. width: 144.w,
  682. height: 142.h,
  683. controller.blurryPhoto.value!,
  684. isOriginal: false,
  685. thumbnailSize: const ThumbnailSize.square(300),
  686. fit: BoxFit.cover,
  687. errorBuilder: (context, error, stackTrace) {
  688. return Assets.images.iconHomeNoPhoto.image(
  689. width: 60.w,
  690. height: 60.h,
  691. );
  692. },
  693. ), onTap: () {
  694. controller.blurryCleanClick();
  695. }),
  696. ],
  697. );
  698. }),
  699. );
  700. }
  701. Widget _buildCard(String title, String buttonLabel, String size, Widget image,
  702. {required Function() onTap}) {
  703. return Stack(
  704. children: [
  705. GestureDetector(
  706. onTap: onTap,
  707. child: Container(
  708. width: 160.w,
  709. height: 189.h,
  710. decoration: ShapeDecoration(
  711. color: Colors.white.withValues(alpha: 0.12),
  712. shape: RoundedRectangleBorder(
  713. borderRadius: BorderRadius.circular(14.r),
  714. ),
  715. ),
  716. child: Column(
  717. crossAxisAlignment: CrossAxisAlignment.center,
  718. children: [
  719. Spacer(),
  720. Container(
  721. alignment: Alignment.centerLeft,
  722. padding: EdgeInsets.only(left: 9.w),
  723. child: Text(
  724. title,
  725. style: TextStyle(
  726. color: Colors.white,
  727. fontSize: 16.sp,
  728. fontWeight: FontWeight.w700,
  729. ),
  730. ),
  731. ),
  732. Spacer(),
  733. Container(
  734. width: 144.w,
  735. height: 142.h,
  736. clipBehavior: Clip.hardEdge,
  737. decoration: ShapeDecoration(
  738. color: Color(0xFF272C33),
  739. shape: RoundedRectangleBorder(
  740. borderRadius: BorderRadius.circular(12.r),
  741. ),
  742. ),
  743. child: Center(
  744. child: image,
  745. ),
  746. ),
  747. Spacer(),
  748. ],
  749. ),
  750. ),
  751. ),
  752. Positioned(
  753. bottom: 16.h,
  754. right: 16.w,
  755. child: CleanUpButton(
  756. label: buttonLabel,
  757. size: size,
  758. onTap: onTap,
  759. ),
  760. ),
  761. ],
  762. );
  763. }
  764. }
  765. class CleanUpButton extends StatelessWidget {
  766. final String label;
  767. final String size;
  768. final Function() onTap;
  769. const CleanUpButton({
  770. super.key,
  771. required this.label,
  772. required this.size,
  773. required this.onTap,
  774. });
  775. @override
  776. Widget build(BuildContext context) {
  777. return GestureDetector(
  778. onTap: onTap,
  779. child: Container(
  780. width: 94.w,
  781. height: 44.h,
  782. decoration: ShapeDecoration(
  783. color: Color(0xFF0279FB),
  784. shape: RoundedRectangleBorder(
  785. borderRadius: BorderRadius.circular(10.r),
  786. ),
  787. ),
  788. child: Row(
  789. mainAxisAlignment: MainAxisAlignment.spaceAround,
  790. children: [
  791. Column(
  792. crossAxisAlignment: CrossAxisAlignment.start,
  793. children: [
  794. Spacer(),
  795. Text(
  796. label,
  797. style: TextStyle(
  798. color: Colors.white,
  799. fontSize: 12.sp,
  800. fontWeight: FontWeight.w400,
  801. ),
  802. ),
  803. Text(
  804. size,
  805. style: TextStyle(
  806. color: Colors.white,
  807. fontSize: 16.sp,
  808. height: 1,
  809. fontWeight: FontWeight.w700,
  810. ),
  811. ),
  812. Spacer(),
  813. ],
  814. ),
  815. Assets.images.iconHomeRightArrow.image(
  816. width: 6.52.w,
  817. height: 6.52.h,
  818. ),
  819. ],
  820. ),
  821. ));
  822. }
  823. }
  824. class ImageContainer extends StatelessWidget {
  825. final Widget image;
  826. final double size;
  827. const ImageContainer({
  828. super.key,
  829. required this.image,
  830. required this.size,
  831. });
  832. @override
  833. Widget build(BuildContext context) {
  834. return Container(
  835. width: size,
  836. height: size,
  837. clipBehavior: Clip.hardEdge,
  838. decoration: BoxDecoration(
  839. color: Color(0xFF272C33),
  840. borderRadius: BorderRadius.circular(12.r),
  841. ),
  842. child: Center(
  843. child: image,
  844. ),
  845. );
  846. }
  847. }