Flutter eCommerce App UI Design | Flutter Grid View | Flutter Nested Scroll View

Поділитися
Вставка
  • Опубліковано 23 гру 2024

КОМЕНТАРІ •

  • @muhammadmajid2178
    @muhammadmajid2178 Рік тому

    Waoo thank you dear dear sir keep up continues daily basis please sir

  • @JutumbaMonathan
    @JutumbaMonathan 2 місяці тому

    For any one watching now dont worry about the extraction of widgets its tiring but repeating it time and time again helps you in learning. Thank you for this awesome content

  • @NickoTyn
    @NickoTyn 13 днів тому

    Since Dart 3.0 you can use switch expressions for the code at 21:05 likes so, instead of the cascading ternary expressions:
    ...
    textAlign: textAlign,
    style: switch (brandTextSize) {
    TextSizes.small => Theme.of(context).textTheme.labelMedium!.apply(color: textColor),
    TextSizes.medium => Theme.of(context).textTheme.bodyLarge!.apply(color: textColor),
    TextSizes.large => Theme.of(context).textTheme.titleLarge!.apply(color: textColor)
    },
    ...

  • @user-gl7qd1vj7l
    @user-gl7qd1vj7l Місяць тому

    thank u for such an amazing tutorial, can I ask sir on how can I fix the first view all text button and put it in to right side? 🙏🙏

    • @CodingwithT
      @CodingwithT  11 днів тому

      Thank you! To align the 'View All' text button to the right, you can wrap it in a Row and use MainAxisAlignment.end

  • @godsplangodwin5721
    @godsplangodwin5721 Рік тому

    Thank you for keeping up with this series ....it's helped me so much

  • @JustGamingAndD
    @JustGamingAndD Рік тому

    Thank you sir. Are you doing a video concern the adaptative and responsive app in this videos series?

    • @CodingwithT
      @CodingwithT  Рік тому +1

      As you see we tried to focus on adaptive design in this tutorial also.. but will cover it in detail in a separate tutorial.

  • @sangeshbala
    @sangeshbala Рік тому

    Hi.. thanks for all these videos.. I have one doubt from your older video. While adding the auth repo to the main.dart you replaced splashscreen with circular loading screen. how to bring back splash screen ? please help me?

    • @CodingwithT
      @CodingwithT  Рік тому

      You can call Splash Screen in the Authentication Screen for few seconds and then redirect.

    • @sangeshbala
      @sangeshbala Рік тому

      thankyou! it worked :)
      @@CodingwithT

  • @mohammedislam733
    @mohammedislam733 5 місяців тому

    hi asalamo alaykom sir , i need your advices how can i be that good in ui , practise alot ?

  • @ahmedfouad1802
    @ahmedfouad1802 7 місяців тому

    Hi thanks for all your amazing videos … am still get error in TSectionHeading onPressed ..invalid constant even after adding Mai axis alignment please help

    • @CodingwithT
      @CodingwithT  7 місяців тому

      It seems like you're encountering an error related to onPressed in TSectionHeading. The error is because you are using const. before the widget. try removing it and let me know if it helped

    • @ahmedfouad1802
      @ahmedfouad1802 7 місяців тому

      @@CodingwithT really thank you it working now really appreciate it

  • @TECHQUICKTQ
    @TECHQUICKTQ 10 місяців тому

    Sir Please give a tutorial how to make an online education app course provider with video course using flutter.

  • @emannasr2184
    @emannasr2184 4 місяці тому

    where is the playlist?

    • @CodingwithT
      @CodingwithT  4 місяці тому +1

      Here is the paylist of the ecommerce app ua-cam.com/play/PL5jb9EteFAOAusKTSuJ5eRl1BapQmMDT6.html

  • @sridhars5550
    @sridhars5550 Рік тому

    Bro when you will be move on to backend?

    • @CodingwithT
      @CodingwithT  Рік тому

      We are almost there. Just a few more videos and designs will be completed. 🤠.
      Stay tuned 😄

  • @maazafridi2090
    @maazafridi2090 Рік тому

    we need all that videos like data from the backend all real-time data.... like orders adding to cart... ThankYou in Advance.

    • @CodingwithT
      @CodingwithT  Рік тому

      Exactly everything will be included in the backend videos. Starting from tomorrow

  • @muhammadmajid2178
    @muhammadmajid2178 Рік тому

    Waoo thank you dear dear sir

  • @ukashaanwar9451
    @ukashaanwar9451 Рік тому

    how many videos Left?

    • @CodingwithT
      @CodingwithT  Рік тому +1

      Design is about to be over. Next videos are about Settings, Product Detail Page (Very important), Cart, Checkout, Orders

  • @mdsajidhossainkhan1473
    @mdsajidhossainkhan1473 8 місяців тому

    can someone provide me the TCartCounterIcon's cart_menu_icon.dart file's code? Thanks in advance

    • @3-ОШБр
      @3-ОШБр 8 місяців тому

      hi, same problem. please tell me, would you find a solution?

    • @ahmedfouad1802
      @ahmedfouad1802 7 місяців тому +1

      class TCartCounterIcon extends StatelessWidget {
      const TCartCounterIcon({
      super.key,
      required this.onPressed,
      required this.iconColor,
      });
      final Color iconColor;
      final VoidCallback onPressed;
      @override
      Widget build(BuildContext context) {
      return Stack(
      children: [
      IconButton(onPressed: onPressed, icon: Icon(Iconsax.shopping_bag, color: iconColor)),
      Positioned(
      right: 0,
      child: Container(
      width: 18,
      height: 18,
      decoration: BoxDecoration(
      color: TColors.black.withOpacity(0.5),
      borderRadius: BorderRadius.circular(100),
      ),
      child: Center(
      child: Text('2' , style: Theme.of(context).textTheme.labelLarge! .apply(color: TColors.white, fontSizeFactor: 0.8))),
      ),
      ),
      ],
      );
      }
      }

    • @3-ОШБр
      @3-ОШБр 7 місяців тому

      @@ahmedfouad1802 hi bro, you have no problems displaying products in firebase on HomeScreen. I have an error No Data Found

  • @kumar_gautam24
    @kumar_gautam24 Рік тому +1

    Live chat?

  • @aouadicharaf1038
    @aouadicharaf1038 Рік тому

    ❤❤❤

  • @sabrinamahiedine9501
    @sabrinamahiedine9501 10 місяців тому

    💯💯💯💯💯💯

  • @muhammadmajid2178
    @muhammadmajid2178 Рік тому

    Waoo thank you dear dear sir