home_view.dart 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870
  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.isScanned.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.isNotEmpty
  494. ? image
  495. : Opacity(
  496. opacity: 0.22,
  497. child: Lottie.asset(Assets.anim.animNoPhoto,
  498. repeat: true,
  499. width: 140.w,
  500. height: 140.w),
  501. ),
  502. size: 146.w,
  503. // Image.file(
  504. // width: 146.w,
  505. // height: 146.w,
  506. // controller.peoplePhotos[index],
  507. // fit: BoxFit.cover,
  508. // ),
  509. // 可以传入不同的路径
  510. );
  511. }),
  512. );
  513. }),
  514. Spacer(),
  515. ],
  516. ),
  517. Positioned(
  518. bottom: 20.h,
  519. right: 20.w,
  520. child: Obx(() {
  521. return CleanUpButton(
  522. label: !controller.isScanned.value
  523. ? 'Scanning...'
  524. : 'Clean up',
  525. size: ImagePickerUtil.formatFileSize(
  526. ImagePickerUtil.peopleSize.value),
  527. onTap: () {
  528. controller.peopleCleanClick();
  529. },
  530. );
  531. }),
  532. ),
  533. ],
  534. ),
  535. ));
  536. }
  537. Widget locationsCard() {
  538. return GestureDetector(
  539. onTap: () {
  540. controller.locationCleanClick();
  541. },
  542. child: Container(
  543. padding: EdgeInsets.symmetric(horizontal: 12.w),
  544. margin: EdgeInsets.only(top: 14.h),
  545. width: 328.w,
  546. height: 230.h,
  547. decoration: ShapeDecoration(
  548. color: Colors.white.withValues(alpha: 0.12),
  549. shape: RoundedRectangleBorder(
  550. borderRadius: BorderRadius.circular(14.sp),
  551. ),
  552. ),
  553. child: Stack(
  554. children: [
  555. Column(
  556. crossAxisAlignment: CrossAxisAlignment.start,
  557. children: [
  558. Spacer(),
  559. Text(
  560. 'Locations',
  561. style: TextStyle(
  562. color: Colors.white,
  563. fontSize: 16.sp,
  564. fontWeight: FontWeight.w700,
  565. ),
  566. ),
  567. Spacer(),
  568. Container(
  569. width: 304.w,
  570. height: 171.h,
  571. clipBehavior: Clip.hardEdge,
  572. decoration: ShapeDecoration(
  573. color: Color(0xFF272C33),
  574. shape: RoundedRectangleBorder(
  575. borderRadius: BorderRadius.circular(12.r),
  576. ),
  577. ),
  578. child: Obx(() {
  579. return Center(
  580. child: controller.locationPhoto.value == null
  581. ? Opacity(
  582. opacity: 0.22,
  583. child: Lottie.asset(Assets.anim.animNoPhoto,
  584. repeat: true, width: 160.w, height: 160.w),
  585. )
  586. : AssetEntityImage(
  587. width: 304.w,
  588. height: 171.h,
  589. controller.locationPhoto.value!,
  590. isOriginal: false,
  591. thumbnailSize: const ThumbnailSize.square(300),
  592. fit: BoxFit.cover,
  593. errorBuilder: (context, error, stackTrace) {
  594. return Assets.images.iconHomeNoPhoto.image(
  595. width: 60.w,
  596. height: 60.h,
  597. );
  598. },
  599. ),
  600. // Image.file(
  601. // width: 304.w,
  602. // height: 171.h,
  603. // controller.locationPhoto.value!,
  604. // fit: BoxFit.cover,
  605. // ),
  606. );
  607. }),
  608. ),
  609. Spacer(),
  610. ],
  611. ),
  612. Positioned(
  613. bottom: 20.h,
  614. right: 8.w,
  615. child: Obx(() {
  616. return CleanUpButton(
  617. label: !controller.isScanned.value
  618. ? 'Scanning...'
  619. : 'Clean up',
  620. size: ImagePickerUtil.formatFileSize(
  621. ImagePickerUtil.locationsSize.value),
  622. onTap: () {
  623. controller.locationCleanClick();
  624. },
  625. );
  626. }),
  627. ),
  628. ],
  629. ),
  630. ));
  631. }
  632. Widget screenshotsAndBlurryCard() {
  633. return Container(
  634. padding: EdgeInsets.symmetric(horizontal: 16.w),
  635. margin: EdgeInsets.only(top: 14.h),
  636. child: Obx(() {
  637. return Row(
  638. mainAxisAlignment: MainAxisAlignment.spaceBetween,
  639. children: [
  640. _buildCard(
  641. 'Screenshots',
  642. !controller.isScanned.value ? 'Scanning...' : 'Clean up',
  643. ImagePickerUtil.formatFileSize(
  644. ImagePickerUtil.screenshotsSize.value),
  645. controller.screenshotPhoto.value == null
  646. ? Opacity(
  647. opacity: 0.22,
  648. child: const CircularProgressIndicator(
  649. color: Colors.white38,
  650. ),
  651. )
  652. : AssetEntityImage(
  653. width: 144.w,
  654. height: 142.h,
  655. controller.screenshotPhoto.value!,
  656. isOriginal: false,
  657. thumbnailSize: const ThumbnailSize.square(300),
  658. fit: BoxFit.cover,
  659. errorBuilder: (context, error, stackTrace) {
  660. return Assets.images.iconHomeNoPhoto.image(
  661. width: 60.w,
  662. height: 60.h,
  663. );
  664. },
  665. ),
  666. onTap: () {
  667. controller.screenshotCleanClick();
  668. },
  669. ),
  670. _buildCard(
  671. 'Blurry',
  672. !controller.isScanned.value ? 'Scanning...' : 'Clean up',
  673. ImagePickerUtil.formatFileSize(
  674. ImagePickerUtil.blurrySize.value),
  675. controller.blurryPhoto.value == null
  676. ? Opacity(
  677. opacity: 0.22,
  678. child: Lottie.asset(Assets.anim.animNoPhoto,
  679. repeat: true, width: 100.w, height: 100.w),
  680. )
  681. : AssetEntityImage(
  682. width: 144.w,
  683. height: 142.h,
  684. controller.blurryPhoto.value!,
  685. isOriginal: false,
  686. thumbnailSize: const ThumbnailSize.square(300),
  687. fit: BoxFit.cover,
  688. errorBuilder: (context, error, stackTrace) {
  689. return Assets.images.iconHomeNoPhoto.image(
  690. width: 60.w,
  691. height: 60.h,
  692. );
  693. },
  694. ), onTap: () {
  695. controller.blurryCleanClick();
  696. }),
  697. ],
  698. );
  699. }),
  700. );
  701. }
  702. Widget _buildCard(String title, String buttonLabel, String size, Widget image,
  703. {required Function() onTap}) {
  704. return Stack(
  705. children: [
  706. GestureDetector(
  707. onTap: onTap,
  708. child: Container(
  709. width: 160.w,
  710. height: 189.h,
  711. decoration: ShapeDecoration(
  712. color: Colors.white.withValues(alpha: 0.12),
  713. shape: RoundedRectangleBorder(
  714. borderRadius: BorderRadius.circular(14.r),
  715. ),
  716. ),
  717. child: Column(
  718. crossAxisAlignment: CrossAxisAlignment.center,
  719. children: [
  720. Spacer(),
  721. Container(
  722. alignment: Alignment.centerLeft,
  723. padding: EdgeInsets.only(left: 9.w),
  724. child: Text(
  725. title,
  726. style: TextStyle(
  727. color: Colors.white,
  728. fontSize: 16.sp,
  729. fontWeight: FontWeight.w700,
  730. ),
  731. ),
  732. ),
  733. Spacer(),
  734. Container(
  735. width: 144.w,
  736. height: 142.h,
  737. clipBehavior: Clip.hardEdge,
  738. decoration: ShapeDecoration(
  739. color: Color(0xFF272C33),
  740. shape: RoundedRectangleBorder(
  741. borderRadius: BorderRadius.circular(12.r),
  742. ),
  743. ),
  744. child: Center(
  745. child: image,
  746. ),
  747. ),
  748. Spacer(),
  749. ],
  750. ),
  751. ),
  752. ),
  753. Positioned(
  754. bottom: 16.h,
  755. right: 16.w,
  756. child: CleanUpButton(
  757. label: buttonLabel,
  758. size: size,
  759. onTap: onTap,
  760. ),
  761. ),
  762. ],
  763. );
  764. }
  765. }
  766. class CleanUpButton extends StatelessWidget {
  767. final String label;
  768. final String size;
  769. final Function() onTap;
  770. const CleanUpButton({
  771. super.key,
  772. required this.label,
  773. required this.size,
  774. required this.onTap,
  775. });
  776. @override
  777. Widget build(BuildContext context) {
  778. return GestureDetector(
  779. onTap: onTap,
  780. child: Container(
  781. width: 94.w,
  782. height: 44.h,
  783. decoration: ShapeDecoration(
  784. color: Color(0xFF0279FB),
  785. shape: RoundedRectangleBorder(
  786. borderRadius: BorderRadius.circular(10.r),
  787. ),
  788. ),
  789. child: Row(
  790. mainAxisAlignment: MainAxisAlignment.spaceAround,
  791. children: [
  792. Column(
  793. crossAxisAlignment: CrossAxisAlignment.start,
  794. children: [
  795. Spacer(),
  796. Text(
  797. label,
  798. style: TextStyle(
  799. color: Colors.white,
  800. fontSize: 12.sp,
  801. fontWeight: FontWeight.w400,
  802. ),
  803. ),
  804. Text(
  805. size,
  806. style: TextStyle(
  807. color: Colors.white,
  808. fontSize: 16.sp,
  809. height: 1,
  810. fontWeight: FontWeight.w700,
  811. ),
  812. ),
  813. Spacer(),
  814. ],
  815. ),
  816. Assets.images.iconHomeRightArrow.image(
  817. width: 6.52.w,
  818. height: 6.52.h,
  819. ),
  820. ],
  821. ),
  822. ));
  823. }
  824. }
  825. class ImageContainer extends StatelessWidget {
  826. final Widget image;
  827. final double size;
  828. const ImageContainer({
  829. super.key,
  830. required this.image,
  831. required this.size,
  832. });
  833. @override
  834. Widget build(BuildContext context) {
  835. return Container(
  836. width: size,
  837. height: size,
  838. clipBehavior: Clip.hardEdge,
  839. decoration: BoxDecoration(
  840. color: Color(0xFF272C33),
  841. borderRadius: BorderRadius.circular(12.r),
  842. ),
  843. child: Center(
  844. child: image,
  845. ),
  846. );
  847. }
  848. }