home_view.dart 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877
  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. if (!controller.isSimilarScanned.value) {
  372. return ImageContainer(
  373. size: 70.w,
  374. image: Opacity(
  375. opacity: 0.22,
  376. child: Lottie.asset(
  377. Assets.anim.animLoadingPhoto,
  378. repeat: true,
  379. width: 100.w,
  380. height: 100.w,
  381. ),
  382. ),
  383. );
  384. }
  385. var image = Assets.images.iconHomeNoPhoto.image(
  386. width: 70.w * 0.45,
  387. height: 70.w * 0.45,
  388. );
  389. if (controller.isSimilarScanned.value &&
  390. controller.similarPhotos.length > index) {
  391. image = AssetEntityImage(
  392. width: 70.w,
  393. height: 70.w,
  394. controller.similarPhotos[index],
  395. isOriginal: false,
  396. thumbnailSize: const ThumbnailSize.square(300),
  397. fit: BoxFit.cover,
  398. errorBuilder: (context, error, stackTrace) {
  399. return Assets.images.iconHomeNoPhoto.image(
  400. width: 70.w * 0.45,
  401. height: 70.w * 0.45,
  402. );
  403. });
  404. }
  405. return ImageContainer(size: 70.w, image: image);
  406. }),
  407. );
  408. }),
  409. Spacer(),
  410. ],
  411. ),
  412. ));
  413. }
  414. Widget quickPhotoCard() {
  415. return Container(
  416. padding: EdgeInsets.symmetric(horizontal: 16.w),
  417. margin: EdgeInsets.only(top: 30.h),
  418. alignment: Alignment.centerLeft,
  419. child: Text(
  420. 'Quick Photo Clean',
  421. style: TextStyle(
  422. color: Colors.white,
  423. fontSize: 18.sp,
  424. fontWeight: FontWeight.w700,
  425. ),
  426. ),
  427. );
  428. }
  429. Widget peopleCard() {
  430. return GestureDetector(
  431. onTap: () {
  432. controller.peopleCleanClick();
  433. },
  434. child: Container(
  435. margin: EdgeInsets.only(top: 12.h),
  436. width: 328.w,
  437. height: 205.h,
  438. decoration: ShapeDecoration(
  439. color: Colors.white.withValues(alpha: 0.12),
  440. shape: RoundedRectangleBorder(
  441. borderRadius: BorderRadius.circular(14.sp),
  442. ),
  443. ),
  444. child: Stack(
  445. children: [
  446. Column(
  447. crossAxisAlignment: CrossAxisAlignment.start,
  448. children: [
  449. Spacer(),
  450. Padding(
  451. padding: EdgeInsets.only(left: 14.0.w),
  452. child: Text(
  453. 'People',
  454. style: TextStyle(
  455. color: Colors.white,
  456. fontSize: 16.sp,
  457. fontWeight: FontWeight.w700,
  458. ),
  459. ),
  460. ),
  461. Spacer(),
  462. Obx(() {
  463. return Row(
  464. mainAxisAlignment: MainAxisAlignment.spaceEvenly,
  465. children: List.generate(2, (index) {
  466. if (!controller.isPeopleScanned.value) {
  467. return ImageContainer(
  468. size: 146.w,
  469. image: Opacity(
  470. opacity: 0.22,
  471. child: Lottie.asset(Assets.anim.animLoadingPhoto,
  472. repeat: true, width: 100.w, height: 100.w),
  473. ),
  474. );
  475. }
  476. var image = Assets.images.iconHomeNoPhoto.image(
  477. width: 146.w * 0.45,
  478. height: 146.w * 0.45,
  479. );
  480. if (controller.peoplePhotos.length > index) {
  481. image = AssetEntityImage(
  482. width: 146.w,
  483. height: 146.w,
  484. controller.peoplePhotos[index],
  485. isOriginal: false,
  486. thumbnailSize: const ThumbnailSize.square(300),
  487. fit: BoxFit.cover,
  488. errorBuilder: (context, error, stackTrace) {
  489. return Assets.images.iconHomeNoPhoto.image(
  490. width: 146.w * 0.45,
  491. height: 146.w * 0.45,
  492. );
  493. });
  494. }
  495. return ImageContainer(
  496. image: image,
  497. size: 146.w,
  498. // Image.file(
  499. // width: 146.w,
  500. // height: 146.w,
  501. // controller.peoplePhotos[index],
  502. // fit: BoxFit.cover,
  503. // ),
  504. // 可以传入不同的路径
  505. );
  506. }),
  507. );
  508. }),
  509. Spacer(),
  510. ],
  511. ),
  512. Positioned(
  513. bottom: 20.h,
  514. right: 20.w,
  515. child: Obx(() {
  516. return CleanUpButton(
  517. label: !controller.isPeopleScanned.value
  518. ? 'Scanning...'
  519. : 'Clean up',
  520. size: ImagePickerUtil.formatFileSize(
  521. ImagePickerUtil.peopleSize.value),
  522. onTap: () {
  523. controller.peopleCleanClick();
  524. },
  525. );
  526. }),
  527. ),
  528. ],
  529. ),
  530. ));
  531. }
  532. Widget locationsCard() {
  533. return GestureDetector(
  534. onTap: () {
  535. controller.locationCleanClick();
  536. },
  537. child: Container(
  538. padding: EdgeInsets.symmetric(horizontal: 12.w),
  539. margin: EdgeInsets.only(top: 14.h),
  540. width: 328.w,
  541. height: 230.h,
  542. decoration: ShapeDecoration(
  543. color: Colors.white.withValues(alpha: 0.12),
  544. shape: RoundedRectangleBorder(
  545. borderRadius: BorderRadius.circular(14.sp),
  546. ),
  547. ),
  548. child: Stack(
  549. children: [
  550. Column(
  551. crossAxisAlignment: CrossAxisAlignment.start,
  552. children: [
  553. Spacer(),
  554. Text(
  555. 'Locations',
  556. style: TextStyle(
  557. color: Colors.white,
  558. fontSize: 16.sp,
  559. fontWeight: FontWeight.w700,
  560. ),
  561. ),
  562. Spacer(),
  563. Container(
  564. width: 304.w,
  565. height: 171.h,
  566. clipBehavior: Clip.hardEdge,
  567. decoration: ShapeDecoration(
  568. color: Color(0xFF272C33),
  569. shape: RoundedRectangleBorder(
  570. borderRadius: BorderRadius.circular(12.r),
  571. ),
  572. ),
  573. child: Obx(() {
  574. return Center(
  575. child: controller.locationPhoto.value == null
  576. ? Opacity(
  577. opacity: 0.22,
  578. child: Lottie.asset(
  579. Assets.anim.animLoadingPhoto,
  580. repeat: true,
  581. width: 160.w,
  582. height: 160.w),
  583. )
  584. : AssetEntityImage(
  585. width: 304.w,
  586. height: 171.h,
  587. controller.locationPhoto.value!,
  588. isOriginal: false,
  589. thumbnailSize: const ThumbnailSize.square(300),
  590. fit: BoxFit.cover,
  591. errorBuilder: (context, error, stackTrace) {
  592. return Assets.images.iconHomeNoPhoto.image(
  593. width: 60.w,
  594. height: 60.h,
  595. );
  596. },
  597. ),
  598. // Image.file(
  599. // width: 304.w,
  600. // height: 171.h,
  601. // controller.locationPhoto.value!,
  602. // fit: BoxFit.cover,
  603. // ),
  604. );
  605. }),
  606. ),
  607. Spacer(),
  608. ],
  609. ),
  610. Positioned(
  611. bottom: 20.h,
  612. right: 8.w,
  613. child: Obx(() {
  614. return CleanUpButton(
  615. label: 'Clean up',
  616. size: ImagePickerUtil.formatFileSize(
  617. ImagePickerUtil.locationsSize.value),
  618. onTap: () {
  619. controller.locationCleanClick();
  620. },
  621. );
  622. }),
  623. ),
  624. ],
  625. ),
  626. ));
  627. }
  628. Widget screenshotsAndBlurryCard() {
  629. return Container(
  630. padding: EdgeInsets.symmetric(horizontal: 16.w),
  631. margin: EdgeInsets.only(top: 14.h),
  632. child: Obx(() {
  633. return Row(
  634. mainAxisAlignment: MainAxisAlignment.spaceBetween,
  635. children: [
  636. _buildCard(
  637. 'Screenshots',
  638. !controller.isScreenShotScanned.value
  639. ? 'Scanning...'
  640. : 'Clean up',
  641. ImagePickerUtil.formatFileSize(
  642. ImagePickerUtil.screenshotsSize.value),
  643. !controller.isScreenShotScanned.value
  644. ? Opacity(
  645. opacity: 0.22,
  646. child: Lottie.asset(Assets.anim.animLoadingPhoto,
  647. repeat: true, width: 100.w, height: 100.w),
  648. ):
  649. controller.screenshotPhoto.value == null
  650. ? Assets.images.iconHomeNoPhoto.image(
  651. width: 60.w,
  652. height: 60.h,
  653. )
  654. : AssetEntityImage(
  655. width: 144.w,
  656. height: 142.h,
  657. controller.screenshotPhoto.value!,
  658. isOriginal: false,
  659. thumbnailSize: const ThumbnailSize.square(300),
  660. fit: BoxFit.cover,
  661. errorBuilder: (context, error, stackTrace) {
  662. return Assets.images.iconHomeNoPhoto.image(
  663. width: 60.w,
  664. height: 60.h,
  665. );
  666. },
  667. ),
  668. onTap: () {
  669. controller.screenshotCleanClick();
  670. },
  671. ),
  672. _buildCard(
  673. 'Blurry',
  674. !controller.isBlurryScanned.value ? 'Scanning...' : 'Clean up',
  675. ImagePickerUtil.formatFileSize(
  676. ImagePickerUtil.blurrySize.value),
  677. !controller.isBlurryScanned.value?
  678. Opacity(
  679. opacity: 0.22,
  680. child: Lottie.asset(Assets.anim.animLoadingPhoto,
  681. repeat: true, width: 100.w, height: 100.w),
  682. ): controller.blurryPhoto.value == null
  683. ? Assets.images.iconHomeNoPhoto.image(
  684. width: 60.w,
  685. height: 60.w,
  686. )
  687. : AssetEntityImage(
  688. width: 144.w,
  689. height: 142.h,
  690. controller.blurryPhoto.value!,
  691. isOriginal: false,
  692. thumbnailSize: const ThumbnailSize.square(300),
  693. fit: BoxFit.cover,
  694. errorBuilder: (context, error, stackTrace) {
  695. return Assets.images.iconHomeNoPhoto.image(
  696. width: 60.w,
  697. height: 60.h,
  698. );
  699. },
  700. ), onTap: () {
  701. controller.blurryCleanClick();
  702. }),
  703. ],
  704. );
  705. }),
  706. );
  707. }
  708. Widget _buildCard(String title, String buttonLabel, String size, Widget image,
  709. {required Function() onTap}) {
  710. return Stack(
  711. children: [
  712. GestureDetector(
  713. onTap: onTap,
  714. child: Container(
  715. width: 160.w,
  716. height: 189.h,
  717. decoration: ShapeDecoration(
  718. color: Colors.white.withValues(alpha: 0.12),
  719. shape: RoundedRectangleBorder(
  720. borderRadius: BorderRadius.circular(14.r),
  721. ),
  722. ),
  723. child: Column(
  724. crossAxisAlignment: CrossAxisAlignment.center,
  725. children: [
  726. Spacer(),
  727. Container(
  728. alignment: Alignment.centerLeft,
  729. padding: EdgeInsets.only(left: 9.w),
  730. child: Text(
  731. title,
  732. style: TextStyle(
  733. color: Colors.white,
  734. fontSize: 16.sp,
  735. fontWeight: FontWeight.w700,
  736. ),
  737. ),
  738. ),
  739. Spacer(),
  740. Container(
  741. width: 144.w,
  742. height: 142.h,
  743. clipBehavior: Clip.hardEdge,
  744. decoration: ShapeDecoration(
  745. color: Color(0xFF272C33),
  746. shape: RoundedRectangleBorder(
  747. borderRadius: BorderRadius.circular(12.r),
  748. ),
  749. ),
  750. child: Center(
  751. child: image,
  752. ),
  753. ),
  754. Spacer(),
  755. ],
  756. ),
  757. ),
  758. ),
  759. Positioned(
  760. bottom: 16.h,
  761. right: 16.w,
  762. child: CleanUpButton(
  763. label: buttonLabel,
  764. size: size,
  765. onTap: onTap,
  766. ),
  767. ),
  768. ],
  769. );
  770. }
  771. }
  772. class CleanUpButton extends StatelessWidget {
  773. final String label;
  774. final String size;
  775. final Function() onTap;
  776. const CleanUpButton({
  777. super.key,
  778. required this.label,
  779. required this.size,
  780. required this.onTap,
  781. });
  782. @override
  783. Widget build(BuildContext context) {
  784. return GestureDetector(
  785. onTap: onTap,
  786. child: Container(
  787. width: 94.w,
  788. height: 44.h,
  789. decoration: ShapeDecoration(
  790. color: Color(0xFF0279FB),
  791. shape: RoundedRectangleBorder(
  792. borderRadius: BorderRadius.circular(10.r),
  793. ),
  794. ),
  795. child: Row(
  796. mainAxisAlignment: MainAxisAlignment.spaceAround,
  797. children: [
  798. Column(
  799. crossAxisAlignment: CrossAxisAlignment.start,
  800. children: [
  801. Spacer(),
  802. Text(
  803. label,
  804. style: TextStyle(
  805. color: Colors.white,
  806. fontSize: 12.sp,
  807. fontWeight: FontWeight.w400,
  808. ),
  809. ),
  810. Text(
  811. size,
  812. style: TextStyle(
  813. color: Colors.white,
  814. fontSize: 16.sp,
  815. height: 1,
  816. fontWeight: FontWeight.w700,
  817. ),
  818. ),
  819. Spacer(),
  820. ],
  821. ),
  822. Assets.images.iconHomeRightArrow.image(
  823. width: 6.52.w,
  824. height: 6.52.h,
  825. ),
  826. ],
  827. ),
  828. ));
  829. }
  830. }
  831. class ImageContainer extends StatelessWidget {
  832. final Widget image;
  833. final double size;
  834. const ImageContainer({
  835. super.key,
  836. required this.image,
  837. required this.size,
  838. });
  839. @override
  840. Widget build(BuildContext context) {
  841. return Container(
  842. width: size,
  843. height: size,
  844. clipBehavior: Clip.hardEdge,
  845. decoration: BoxDecoration(
  846. color: Color(0xFF272C33),
  847. borderRadius: BorderRadius.circular(12.r),
  848. ),
  849. child: Center(
  850. child: image,
  851. ),
  852. );
  853. }
  854. }