Тёмный
Easy Approach
Easy Approach
Easy Approach
Подписаться
I am Maaz Aftab, creator of this channel and The notion of making this channel is to make hard to understand things easy. The primary focus of the channel is to cover software development and technology related stuff, and to create quality content that can help students learn and to become a great professionals. Currently, Flutter, which is google SDK, for cross platform applications is hot in the market, and we are working greatly on creating quality content on this technology. Using Flutter you can create beautiful applications that can run on different platforms with a single code base. You can learn and start providing the development service as there are tons of projects are posted on upwork and other freelance website and you can make good money.

Personal Contact:
Facebook : themaaz32
Mobile : +923412185382
Twitter : maazaftab6
LinkedIn : themaaz32
Geekle Flutter Global Summit 2021
5:22
3 года назад
Recipe App UI in Flutter | Speed Code
17:57
4 года назад
Flutter Todo App UI Speed Code
11:27
4 года назад
Explicit Animation in Flutter
19:07
4 года назад
Flutter HTTP Request (Post Request)
17:05
4 года назад
Hive database flutter tutorial, CRUD
26:33
4 года назад
Streams in Flutter tutorial
15:30
4 года назад
PDF in Flutter, Creation and Preview
18:42
4 года назад
Комментарии
@harisbashir2719
@harisbashir2719 6 дней назад
First video of 2022 and our guru disappeared 🥲
@shalinda
@shalinda 7 дней назад
there is a offset in autocomplete field suggestion , how to fix it
@harisbashir2719
@harisbashir2719 8 дней назад
After searchedState emit you are emitting no word search beecause of thaty uI have a little jerk
@Akua-hx3rb
@Akua-hx3rb 10 дней назад
Yikes.. this is not professional way of coding Flutter.
@tiziprince
@tiziprince 15 дней назад
It's so simple and educative. Thanks, bruh!!!
@my_wave_app
@my_wave_app Месяц назад
thanks for this video it really helped me to build my mobile app (content creator data dashboarding solution), which is now live! it has been few days only but this video was very helpful! Sign in and API were both a bit tricky but could make it work :) cheers
@ffstrom5100
@ffstrom5100 Месяц назад
this packege work on tablete and i pad apps??
@cromuelbarut9859
@cromuelbarut9859 3 месяца назад
awesome tutorial
@asib9894
@asib9894 3 месяца назад
You should share this figma UI project with us. Then we will practice on this project.
@heeraj_saini
@heeraj_saini 3 месяца назад
can you provide updated version of this please , its been 3 years and no other video on youtube for this
@anisurrehman4274
@anisurrehman4274 3 месяца назад
totally time waste becuos material app not working
@Mahmoudery
@Mahmoudery 4 месяца назад
I am having a corner case while working with this package. So the problem is that when I call setState method on a stateful widget, the whole layout size just changes, the containers get smaller after rebuilding the tree, anyone knows how to encounter this problem with a proper solution?
@GamerBoy-fe3ey
@GamerBoy-fe3ey 4 месяца назад
Hi bro not making videos any longer ???
@ai12001
@ai12001 4 месяца назад
Very nice tutorial!!
@user-vr9qb5rj4j
@user-vr9qb5rj4j 4 месяца назад
Thanks!
@Grinwa
@Grinwa 4 месяца назад
After spending the whole last day learning provider RU-vid recommend me getx wich i never heard of
@Nobisuke
@Nobisuke 4 месяца назад
how can you controll the width of the dropdown same with the width of your textbox?
@kurohise8801
@kurohise8801 5 месяцев назад
u r a pro
@zaidahmed5618
@zaidahmed5618 5 месяцев назад
The video is great overall but your accent is kinda annoying, please try to be natural brother
@Mahmoudery
@Mahmoudery 5 месяцев назад
Insightful.
@newbee936
@newbee936 6 месяцев назад
Thanks alot ... it was a great help
@jontysingh4334
@jontysingh4334 6 месяцев назад
Badge number not coming on ios app icon rest working fine, please can make one tutorial for showing badge number on app icon for Android there is no issue in ios i am not getting badge number on app icon
@saimorajkar1470
@saimorajkar1470 6 месяцев назад
very helpful! but need an update. I am using auto-complete on windows i have no issue but the auto-complete list-tiles take all the space availave plz help !
@marctre9004
@marctre9004 6 месяцев назад
Thanks so much for the tutorial...thought my app won't be fixed ...been looking for a better solution ...thanks so much
@VictorOnFlutter
@VictorOnFlutter 6 месяцев назад
Thanks for the video! Do you know how to adjust that right space on the ListView? It's overtaking the padding that you put above of Autocomplete. Can you help me?
@pinacolada6936
@pinacolada6936 6 месяцев назад
Thank you in advance!!❤❤
@ansrasi3470
@ansrasi3470 7 месяцев назад
The AutoComplete widget is called on every page. Each page calls for different purposes. How about storing any text written in each auto complete text field in the respective page (I could only change the design of each text field and use it).
@barnabassolomon1629
@barnabassolomon1629 7 месяцев назад
Bless ur soul for this video
@MehmetCan-hz5iw
@MehmetCan-hz5iw 8 месяцев назад
import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( home: HomePage(), ); } } class HomePage extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text('Yummies:):)'), ), body: Center( child:Column( mainAxisAlignment: MainAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.center, children: [ ElevatedButton(onPressed: () { Navigator.push(context, MaterialPageRoute(builder: (context) => SecondPage(imageIndex: 1)), ); }, child: Image.network('cdn.pixabay.com/photo/2017/01/30/13/49/pancakes-2020863_1280.jpg', width: 800, height: 200, fit:BoxFit.cover), ), ElevatedButton(onPressed: () { Navigator.push( context, MaterialPageRoute(builder: (context) => SecondPage(imageIndex: 2)), ); }, child: Image.network('www.allrecipes.com/thmb/KA7Ot8NbxqQsnYMQhGsHG1aWys8=/750x0/filters:no_upscale():max_bytes(150000):strip_icc():format(webp)/1095418-079010e099924935b25a4b6a01d6e3ef.jpg', width: 800, height: 200, fit:BoxFit.cover), ), ElevatedButton(onPressed: () { Navigator.push( context, MaterialPageRoute(builder: (context) => SecondPage(imageIndex: 3)), ); }, child: Image.network('cdn.pixabay.com/photo/2017/05/07/08/56/pancakes-2291908_1280.jpg', width: 800, height: 200, fit:BoxFit.cover), ), ], ), ), ); } } class SecondPage extends StatelessWidget { final int imageIndex; SecondPage({required this.imageIndex} ); @override Widget build(BuildContext context) { String a=""; switch(imageIndex) { case 1: {a='Pankek, nişasta bazlı, yumurta, süt ve tereyağı içeren bir bulamaç ile hazırlanan ve genellikle ince ve yuvarlak olan düz bir hamur işi türüdür. Kalbur veya kızartma tavası gibi sıcak ve yağlanmış yüzeylerde pişirilerek hazırlanır.'; } break; case 2: {a='Mix paprika, cayenne pepper, onion powder, salt, white and black pepper, thyme, basil, and oregano together in a small bowl.Brush salmon fillets on both sides with 1/4 cup butter, and sprinkle evenly with the spice mixture.Heat 2 tablespoons melted butter in a large, heavy skillet over high heat. Add salmon and cook until blackened, 2 to 5 minutes. Lift fillets, add remaining melted butter to the skillet, and flip fillets into the butter. Cook until the other side is blackened and fish flakes easily with a fork, 3 to 5 minutes.'; } break; case 3: {a='Whisk the flour and eggs.Gradually add the milk and water.Scoop the batter onto a hot griddle.Cook until lightly browned on the bottom.Flip and continue cooking until done on both sides.'; } break; default: {print(imageIndex);} } return Scaffold( appBar: AppBar( title: Text('Recipe Page'), ), body: Center( child: Text(a), ) ); } }
@shakshorsarker3418
@shakshorsarker3418 9 месяцев назад
what will be the design ratio if i have not any figma design?
@mikewest557
@mikewest557 6 месяцев назад
i think this approach is for designs already mocked up in a design software like figma
@ram_5433
@ram_5433 9 месяцев назад
Nice information.
@emwagner
@emwagner 9 месяцев назад
If I'm understanding correctly, the enum for incomplete is now not being used. Because you're negating the iscomplete enum instead of specifying the enum in the else block..
@Socialifly
@Socialifly 9 месяцев назад
Amazing way to explain. What will happen if the screen size is small like 5 inch phone and as the design suggests there is no scrolling will that work or we need to add scroll as well
@daniwaxman6016
@daniwaxman6016 9 месяцев назад
Great video! I am finding that the display is not sized in proportion on iPhone 13 mini. The type is too large for the display. Is there something I am doing wrong that can be causing this?
@mikewest557
@mikewest557 6 месяцев назад
i hope you specified the .sp for the type? the .sp is the trick. if not, something must done with the spacing around the parent of the text widget
@ramsay9912
@ramsay9912 9 месяцев назад
thanks for the video. however, i would rather use RichText widget instead the Wrap widget for texts that have different styles, like the one you use for: 'Alread have an account? LOGIN' & 'By singing up to Masterminds you ...'
@mikewest557
@mikewest557 6 месяцев назад
that is a smart move 😅👍
@30vijaytyagi9
@30vijaytyagi9 9 месяцев назад
Thank You Sir
@adimardev1550
@adimardev1550 10 месяцев назад
i had to admit, that was a great intro.
@deepakchauhan8884
@deepakchauhan8884 10 месяцев назад
Please give example where I can use multiple bloc
@rezwansaki
@rezwansaki 10 месяцев назад
Please, make another tutorial like this.
@fikkyardianto
@fikkyardianto 10 месяцев назад
what if the device turn on orientation to landscape?
@rezwansaki
@rezwansaki 10 месяцев назад
This is awesome tutorial. Easy and perfect. Thanks for this tutorial
@rishidiwute3604
@rishidiwute3604 10 месяцев назад
Saved me. and my day ! thank you man.
@sagorfarhan4402
@sagorfarhan4402 11 месяцев назад
gayikajhinukersathecontactkaraakghontarmpdhe
@flutterphile
@flutterphile 11 месяцев назад
one of the best explanation
@faheemahmad3957
@faheemahmad3957 11 месяцев назад
pleas remake for flutter 3.13
@YousifEZZi
@YousifEZZi 11 месяцев назад
thanks a lot
@akshaykumars2426
@akshaykumars2426 11 месяцев назад
Good explanation
@restaurantrecipebyhafsa
@restaurantrecipebyhafsa Год назад
i am getting this error The argument type 'MaterialApp Function()' can't be assigned to the parameter type 'Widget Function(BuildContext, Widget?)'.......why?
@anisurrehman4274
@anisurrehman4274 4 месяца назад
same
@anisurrehman4274
@anisurrehman4274 4 месяца назад
builder: (BuildContext context, Widget? widget) try this
@MrRota295
@MrRota295 Год назад
Solved my problems! Thanks a lot!