Advertisement
Davefurn

the home_body

Feb 8th, 2023
866
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 2.66 KB | None | 0 0
  1. import 'package:bubu_market/widgets/general_widgets/permnent_bottom_container.dart';
  2. import 'package:bubu_market/widgets/home_widgets/almost_sold_out.dart';
  3. import 'package:bubu_market/widgets/home_widgets/our_collection.dart';
  4. import 'package:bubu_market/widgets/home_widgets/popular_brands.dart';
  5. import 'package:bubu_market/widgets/home_widgets/recently_viewed_items.dart';
  6. import 'package:flutter/material.dart';
  7.  
  8. import '../../widgets/home_widgets/add_to_wish_list.dart';
  9. import '../../widgets/home_widgets/back_to_school.dart';
  10. import '../../widgets/home_widgets/carousel_widget.dart';
  11. import '../../widgets/home_widgets/contact_us.dart';
  12. import '../../widgets/home_widgets/deal_of_day.dart';
  13. import '../../widgets/home_widgets/discount_sales.dart';
  14. import '../../widgets/home_widgets/explore_all.dart';
  15. import '../../widgets/home_widgets/interesting_finds.dart';
  16. import '../../widgets/home_widgets/top_categories.dart';
  17.  
  18. class Home extends StatelessWidget {
  19.   const Home({
  20.     Key? key,
  21.   }) : super(key: key);
  22.  
  23.   @override
  24.   Widget build(BuildContext context) {
  25.     return SingleChildScrollView(
  26.       child: Column(
  27.         mainAxisAlignment: MainAxisAlignment.start,
  28.         children: [
  29.           const ContactUs(),
  30.           const TopCatgories(),
  31.           const CarouselImage(),
  32.           const DealOfDay(),
  33.           Container(
  34.             color: const Color.fromARGB(255, 230, 227, 227),
  35.             height: 16,
  36.           ),
  37.           const SizedBox(
  38.             height: 16,
  39.           ),
  40.           const DiscountSales(),
  41.           Container(
  42.             color: const Color.fromARGB(255, 230, 227, 227),
  43.             height: 16,
  44.           ),
  45.           const SizedBox(
  46.             height: 4,
  47.           ),
  48.           const BackToSchool(),
  49.           const SizedBox(
  50.             height: 4,
  51.           ),
  52.           Container(
  53.             color: const Color.fromARGB(255, 230, 227, 227),
  54.             height: 16,
  55.           ),
  56.           const AddToYourWishList(),
  57.           const SizedBox(
  58.             height: 4,
  59.           ),
  60.           Container(
  61.             color: const Color.fromARGB(255, 230, 227, 227),
  62.             height: 16,
  63.           ),
  64.           const ExploreAll(),
  65.           const SizedBox(
  66.             height: 4,
  67.           ),
  68.           const CarouselImage(),
  69.           const SizedBox(
  70.             height: 10,
  71.           ),
  72.           const InterestingFinds(),
  73.           const SizedBox(
  74.             height: 10,
  75.           ),
  76.           const OurCollection(),
  77.           const AlmostSoldOut(),
  78.           const PopularBrands(),
  79.           const RecentlyViewedItems(),
  80.           const PermanentBox(),
  81.         ],
  82.       ),
  83.     );
  84.   }
  85. }
  86.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement