Favorite Product Screen in Flutter | Flutter eCommerce App

  Рет қаралды 9,469

Coding With T

Coding With T

Күн бұрын

In this informative Flutter eCommerce video tutorial, we will guide you through the creation of a Wishlist screen in Flutter, offering you a dynamic and organized user interface for your e-commerce app.
► Flutter eCommerce App Course: • Professional Flutter E...
🎊 E-COMMERCE APP
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
🎁 DOWNLOAD SOURCE CODE: codingwitht.com/product/flutt...
❤️ FLUTTER E-COMMERCE APP PLAYLISTS
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
► Complete E-Commerce App : • Professional Flutter E...
► Section - 1 Configuration : • Professional Flutter P...
► Section - 2 Login App : • Professional Flutter P...
► Section - 3 eCommerce UI : • Flutter Complete Ecomm...
► Section - 4 Login Backend: • Flutter Firebase Cours...
► Section - 5 eCommerce Backend: • Flutter E-Commerce App...
❤️ SUBSCRIPTIONS
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
► Join Patreon to Access Premium Content: / membership
COURSES
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
► FLUTTER CRASH COURSE • Flutter Crash Course f...
► LOGIN APP FIREBASE • Flutter Login App - UI...
🧑‍💻 RELATED VIDEOS
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
► Custom App Bar: • Flutter Custom AppBar ...
► Custom Shape: • Flutter Clip Path Tuto...
► Circular image: • Search Bar and Horizon...
► Grid Layout & Product Design : • Gridview in Flutter wi...
► All Products Page Design • Flutter All Products P...
FOLLOW US ON SOCIAL MEDIA
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
💻 Facebook | / codingwithtea
💻 Instagram | / coding_with_tea
❤️ Subscribe | kzbin.info...
CHAPTERS
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
00:00 Introduction
00:10 Video Overview
00:58 Playlist Overview
01:27 Previous Tutorial Overview
02:12 How to remove warnings in flutter
03:26 Create custom app bar in flutter
04:47 Change color of categories created in previous tutorial
05:49 Create Wishlist widget
DETAILS

Пікірлер: 19
@mohammedislam733
@mohammedislam733 10 күн бұрын
why we add the Column widget here ? thers another widgets to create with the grid?
@muhammadmajid2178
@muhammadmajid2178 9 ай бұрын
Very nice sir g
@CodingwithT
@CodingwithT 9 ай бұрын
Thank you
@user-zn1lb6ir2w
@user-zn1lb6ir2w 7 ай бұрын
Question - I see you have set up Android Studio so that when you click on a module that is referenced in the code (like "TAppBar") it opens up the actual file in the studio. What is the setting to get this link activated? Also, you have a circular cursor on the emulator - what settings do you use to set that up in Android Studio - I still show my arrow mouse cursor. Thanks in advance.
@CodingwithT
@CodingwithT 7 ай бұрын
1- TAppBar is a custom app bar widget i have created in custom app bar tutorial. 2- I am using my android mobile not an emulator.
@ryansumbele3552
@ryansumbele3552 6 ай бұрын
i understand what you mean to click the module and open the file like he does, you press and hold ctrl on your keyboard ,then hover over the module, when it turns blue you click it
@aouadicharaf1038
@aouadicharaf1038 6 ай бұрын
❤❤❤
@xYolcar
@xYolcar 9 ай бұрын
The "onPressed" of the add button should update the selectedIndex of the NavigationController, because otherwise when going home it loses the NavigationBar.
@CodingwithT
@CodingwithT 9 ай бұрын
To navigate to Home with a Navigation in place. You should call NavigationMenu class as we did in the Login.
@ChetankumarAkarte
@ChetankumarAkarte 9 ай бұрын
@@CodingwithT As per your suggestion below code won't work. In the NavigationController => selectedIndex is set to 2 so it will remain on the Wishlist page. TCircularIcon( icon: Iconsax.add, onPressed: () => Get.to(() => const NavigationMenu()), )
@A2Vloogs
@A2Vloogs 8 ай бұрын
@@ChetankumarAkarte did you find the solution??
@ChetankumarAkarte
@ChetankumarAkarte 7 ай бұрын
@@A2Vloogs Modify your build method as below... @override Widget build(BuildContext context) { NavigationController controller = Get.put(NavigationController()); return Scaffold( appBar: TAppBar( title: Text('Wishlist', style: Theme.of(context).textTheme.headlineMedium), actions: [ TCircularIcon( icon: Iconsax.add, onPressed: () { controller.selectedIndex.value = 0; Get.to(() => const NavigationMenu()); }, ) ], ), body: SingleChildScrollView( child: Padding( padding: const EdgeInsets.all(TSizes.defaultSpace), child: Column( children: [ TGridLayout( itemCount: 5, itemBuilder: (_, index) { return const TProductCardVertical(); }), ], ), ), ), ); }
@PhenomenalPulse
@PhenomenalPulse 6 ай бұрын
@@A2Vloogs after navigating to NavigationMenu update controller.selectedIndex.value otherwise selecteIndex will be remain 2, and when you click icon to navigate you will be still in WishlistScreen
@gulammustufamomin2503
@gulammustufamomin2503 7 ай бұрын
I am getting blank space between Nike and $25.5. I tried to remove from my self but not solved. Can you please help me ?
@CodingwithT
@CodingwithT 7 ай бұрын
That's added by choice using the Spacer() widget.
@gulammustufamomin2503
@gulammustufamomin2503 7 ай бұрын
@@CodingwithT : If we don't add spacer the text goes up. I want to reduce the height of the grid. In your device there is no space between Nike and $25.5 but in my device the space is more.
@Nethaji_Karthick
@Nethaji_Karthick 9 ай бұрын
Hello dear
@CodingwithT
@CodingwithT 9 ай бұрын
Hello 😊
Flutter Account Settings Screen UI Design | Flutter eCommerce App
15:07
Learn to use Isolates in Flutter | Simplified
10:28
CodeX
Рет қаралды 23 М.
How Many Balloons Does It Take To Fly?
00:18
MrBeast
Рет қаралды 202 МЛН
Они так быстро убрались!
01:00
Аришнев
Рет қаралды 1,7 МЛН
Account Settings Screen UI Design | Flutter Speed Code
17:31
Uranus Code
Рет қаралды 11 М.
What's going on with Windows Laptops?
10:30
Marques Brownlee
Рет қаралды 1,9 МЛН
TabBar in Flutter with Scrolling Categories | Flutter eCommerce App
20:04
GetX State Management tutorial with Flutter 😍
38:13
CodeX
Рет қаралды 135 М.
Gridview in Flutter with Product Card Design | Flutter Gridview 2023
27:02
$1 vs $100,000 Slow Motion Camera!
0:44
Hafu Go
Рет қаралды 28 МЛН
8 Товаров с Алиэкспресс, о которых ты мог и не знать!
49:47
РасПаковка ДваПаковка
Рет қаралды 173 М.
📱магазин техники в 2014 vs 2024
0:41
djetics
Рет қаралды 520 М.
Как удвоить напряжение? #электроника #умножитель
1:00
Hi Dev! – Электроника
Рет қаралды 1,1 МЛН