Build Your First Flutter App | Day 01 - #30DaysOfFlutter

preview_player
Показать описание
Kilo Loco kicks off #30DaysOfFlutter with a tutorial covering how to build your first Flutter app. By the end of this tutorial, you will have a better understanding of how Dart and Flutter work together as well as a functional app that helps you pick a restaurant to eat at.

*** Show Notes and Links ***

Project Files:

Kilo Loco on Social Media:

#flutter #dartlang #30DaysOfFlutter
Рекомендации по теме
Комментарии
Автор

oh god, , this dude is making it too simple ✨

kumarvishalben
Автор

Yeah! finally found a true flutter master.

mashilheibanm
Автор

Been subbed for a while. Very coincidentally found a need/want to learn Flutter. Super excited to watch!

thebandwagoneffect
Автор

First time I have looked at the structure of Flutter. Nicely presented Kyle.

chrispyk
Автор

Kilo Loco, Thank you to take your time sharing your knowledge about flutter, I hope this next year 2022 comes with new 30 days of flutter from you.

IngPedroAraujo
Автор

Hi Kilo, thanks for your effort, I LOVE it

pierremarais
Автор

That was quick and simple. Loved the way you presented it.Thumbs up.

the_nomadic_ajith
Автор

Great tutorial. Just quick update for us who came here after a year.
Instead of "int currentIndex;" should be "var currentIndex;" since Dart doesn't allow int assigned variable to be initiated without number anymore.
And instead of FlatButton we should use ElevatedButton or TextButton. :)

fassoyangce
Автор

Honestly you are really perfect man, thank you so much !!!!1

oliviagraciehouten
Автор

You are great and you explain much better than so called tutors Thanks 🥰

Maxamedsomali
Автор

I was hoping you would delete State classes and start clean and you did exactly that :),
very simple and clear thank you sir.

Marvelus
Автор

Started Flutter From Today
#30DaysOfFlutter
Thanks Kilo Loco

pratikgupta
Автор

Good job bro. It's really useful. Please do more videos.

phoumjaiyang
Автор

Thanks for your tutorial. I loved it. :) Eagerly moving to next one.

iappexplorer
Автор

That's a great challenge! I'll definitely join the challenge once I'm done with my side projects!

siruxsolutions
Автор

This is awesome! From your last question, things I'd like to code include auth, file upload, (maybe for advanced use, binding native code)

matthewchung
Автор

Hi,

Do you know if Flutter team is working to support Amplify for flutter 'web' as far as appsync and s3 is concerned?

js
Автор

Thank you Sir
I learn new thing from this tutorial and hope other 29 day tutorial will awesome and valuable!

Also do create a playlist 30 day flutter!

#flutter #30daysflutter #happycoding

ezone
Автор

int can't be null anymore i tried int? that also didn't work... Is there any update regarding this issue please? Just started learning about flutter and dart so no idea how to fix this issue.

shaysframe
Автор

Outstanding, clear and informative! I played with the code and changed the updateIndex() function to look like this:
void updateIndex() {
// final random = Random();
// final index =
setState(() {
// currentIndex = index;
currentIndex =
});
}

That is, I eliminated the two variables, random and index. Is this a wise thing to do inside a setState()?
Overheads, penalties?

SlobodanVujnovic