Flutter Tutorial for Beginners #24 - Widget Lifecycle

preview_player
Показать описание
----------------------------------------

🐱‍💻 🐱‍💻 Course Links:

🐱‍💻 🐱‍💻 Other Related Courses:

Рекомендации по теме
Комментарии
Автор

I haven't commented yet, but now i have to say man your tutorials are addictive.Literally I could not stop watching your series.
Great work!!!!

HARSHITKUMAR-wjex
Автор

Since Flutter 2.5.0 on, a new button set has been replaced for RaisedButton with ElevatedButton, FlatButton with TextButton and OutlineButton with OutlinedButton.

ngotuanhien
Автор

I just want to thank you netninja! We're doing a mobile app using flutter, and we don't know anything about mobile developing. You are a life saver! Thank you for the free course! 11/10!

creamypasta
Автор

Perfect series. The only reason why I get premium YouTube for downloading your Playlist :) thanks for the flutter series. I hope you keep adding new flutter tutorials. Thanks again Best regards.

beratdinckan
Автор

Best Flutter tutorial series I have ever seen, thanks for sharing.

projectmarcus
Автор

I am addicted to this series. Thanks for making flutter interesting buddy.

chotti
Автор

amazing videos bruh....
Youtube needs to suggest this to anyone who searches for flutter

tekki.dev.
Автор

From Pakistan
I love the way you explains things, crystal clear 🖤🖤💙💙 stay blessed

hammadulaziz
Автор

for new Flutter version you need ElevatedButton, and it needs a style.

add this as a local variable, preferably above counter.

final ButtonStyle raisedButtonStyle = ElevatedButton.styleFrom(
onPrimary: Colors.black87,
primary: Colors.grey[300],
minimumSize: Size(88, 36),
padding: 16),
shape: const RoundedRectangleBorder(
borderRadius: BorderRadius.all(Radius.circular(2)),
),
);

then use ElevatedButton like

body: ElevatedButton(
style: raisedButtonStyle,
onPressed: () {
setState(() {
counter += 1;
});;
},
child: Text('counter is $counter'),
), //ElevatedButton
); //Scaffold

seaque.
Автор

I just wanted to say a huge thank you. I am not really in a position to subscribe to your patreon but I just want to say I really appreciate these tutorials and they have made my week in lockdown very enjoyable!

dom
Автор

After 23 videos, I've started to just press the like button at the beginning of the video

dominikvereno
Автор

Quick FYI -- 1:55 - you said that Build() is called a lot in a Stateless widget, when I think you meant Stateful.

MojaveHigh
Автор

Great series, Really helped me to get started with Flutter

shashanksm
Автор

love from INDIA ♥♥♥
show the support from India guys 🎇🎈🎇

yadhukrishna
Автор

Love from Algeria !
Text( ' Awesome work ! ' )

Ryze
Автор

that video was a good one man. hugely appreciate the explanation. Love the way you teach

mazenshams
Автор

Thanks for the tutorials. You do a great job man! Thank you!

jasonrbodie
Автор

Everything explained very well. Thank you Sir.

jagrit
Автор

I dont know how to express my feelings...But your teaching style is much!!

srirajpalakurthi
Автор

"The Routs is a pathway to many possibilities, some consider to be..unnatural”;

andreranulfo-dev