home_view.dart 28 KB

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