Тёмный

Flutter for the JS Developer 

Fireship
Подписаться 3,3 млн
Просмотров 397 тыс.
50% 1

Flutter/Dart basics for the JavaScript web developer. Learn the similarities and differences between Dart and JS side-by-side. Compare Flutter Widgets to React Native components. fireship.io/le...
- Flutter flutter.io
- React Native facebook.githu...

Опубликовано:

 

28 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 344   
@lemonplz
@lemonplz 5 лет назад
Dart = java(only the good parts) + JavaScript (only the good parts)
@relentless5723
@relentless5723 5 лет назад
Dart is actually quite similiar to C# and I don't mean that because C# is similiar to Java. Anonymouse methods and types, promisses, properties, async/await and so on are part of C# for years.
@HermanWillems
@HermanWillems 5 лет назад
@@relentless5723 C# is not a scripting language. I always felt like Java and C# to be like in a realm that is not needed. Yes we need scripting languages for dynamic stuff, and yes we need system languages for fast static stuff. Both can be used together. Where C# and Java is more like trying to do those both but failing at each of them. Dart is nice for scripting, while rust is nice for system level.
@bernadotornado7068
@bernadotornado7068 5 лет назад
@@relentless5723 I have to agree on that. I learned programming from making games in Unity and was avoiding the JavaScript version of Unity because C# syntax was just more appealing for me. Ever since I started web-development i have always used TypeScript because it is basically C#script to C# as JavaScript is to Java. Dart is even more like C# which is why I only use Unity for making games and not for app design anymore.
@JK92007
@JK92007 4 года назад
Should I learn js or Dart..? Any one plz...I m new bees for programming..
@pankajmanali
@pankajmanali 4 года назад
@@JK92007 Depends if you are going for web development or mobile development. For web its definitely JS plus you can write mobile apps as well using react-native, ionic etc. Flutter on other hand is mostly suited for mobile applications and it gives better performance over mobile apps written in JS.
5 лет назад
Flutter/Dart is a great career path to JavaScript programmer to go cross platform and fully native. Your side by side rapid fire comparison worked really well! 😍 👁💧👁. 👣
@Fireship
@Fireship 5 лет назад
Thank you! Excellent emoji usage 🍻
@lovesimpleton8177
@lovesimpleton8177 5 лет назад
is flutter/dart considered native?
@not2day646
@not2day646 5 лет назад
@@lovesimpleton8177 eh, its close enough. Not fully though
@Kay8B
@Kay8B 2 года назад
Coming from C# as my mother language in coding. This look eerily similar. Gonna give this a go and finally build that app my wife keeps asking me for!
@this.is.lapc506
@this.is.lapc506 5 лет назад
I've been looking for a quick introduction like this for months! Thanks a lot dude!
@alexschlake9701
@alexschlake9701 5 лет назад
Mmmmm the C like syntax reminds me of my wild college days.
@JannisAdmek
@JannisAdmek 5 лет назад
Alex Schlake wild malloc times? ;)
@luiaslan
@luiaslan 5 лет назад
C is life.
@keokawasaki7833
@keokawasaki7833 4 года назад
I am going through them... still need to learn how yo use gdb
@bas_kar_na_yar
@bas_kar_na_yar 4 года назад
I love flutter because when I ask it to align content center, it does align content center..
@Yivan4
@Yivan4 2 года назад
Unlike centering a div
@carniattos
@carniattos 5 лет назад
Great video, I was waiting for it since your last video, I'm intrigued with flutter and this video gave me the bare minimum to kickstart a flutter app
@florentarlandis1209
@florentarlandis1209 4 года назад
Await for loop?! This looks awesome!
@Its_Pritam_
@Its_Pritam_ 4 года назад
Flutter with the android studio is much more convenient and powerful, so I avoid vscode. I am a native android developer and knew very little about javascript. So for me, it was easy to learn flutter than react, because dart is pretty similar to java.
@elyoni-corp
@elyoni-corp 2 года назад
Flutter is way better than js frameworks for multi platform applications , I wish I know this sooner
@fredmaiaarantes
@fredmaiaarantes 5 лет назад
Your content is always great! Congrats and please keep doing this. 👏
@juangamarra1463
@juangamarra1463 5 лет назад
Genial. Excelente trabajo. Gracias. Esperamos mas noticias de Flutter.
@Viralplace
@Viralplace 5 лет назад
So should I learn vue or flutter ?
@Fireship
@Fireship 5 лет назад
Wanna build a web app? Vue. Wanna build a native mobile app? Flutter
@anthillca3665
@anthillca3665 5 лет назад
Dude, please create a Flutter/Firebase course on Udemy. Your vids are great, and Udemy is in need of a Firebase course that truly does it justice. Or just do a Firebase course by itself, that would be enough.
@mattiaesposito5525
@mattiaesposito5525 5 лет назад
very nice tutorial thank you i think i'm gonna learn dart and flutter
@pastuh
@pastuh 4 года назад
I just started deep dive javascript... I don't know if its worth to switch.. :X NodeJS also very popular
@mitchross2852
@mitchross2852 4 года назад
Great video
@Vietnamcamping89
@Vietnamcamping89 4 года назад
pure javascript, react and angular-typescript, that's all for me :)
@AkshatKanchan
@AkshatKanchan 5 лет назад
Please more of this!
@jnsp6081
@jnsp6081 2 года назад
You should make a discord server for your community :p Love your videos
@iamclaytonray
@iamclaytonray 5 лет назад
Great video but I disagree with your statement about local state not scaling well. In my opinion and experience, state management libraries, like Redux, add additional complexity to a project and does not scale well for the team. Having to go through multiple files to track down where your state is coming from, where it currently is, and where it will end up is tedious and inefficient. Past that, state management libraries are often abused. I rarely see something like Redux being properly used as it's usually a scapegoat for throwing your whole application state into. I've seen local state being abused and not implemented properly as well but there are considerably less problems when you're dealing with local state than with using a state management library.
@Fireship
@Fireship 5 лет назад
You make some great points and I agree state management libs are often unnecessary and abused. I've found local state easier to manage in Flutter than ReactJS and believe this is mostly due to Flutter's builder widgets, like StreamBuilder. Personally, the combination of setState and Streams has been more than adequate to solve all my data flow problems.
@iamclaytonray
@iamclaytonray 5 лет назад
​@@Fireship - I concur. The Flutter team really thought things through pretty well!
@6729solarwolf
@6729solarwolf 4 года назад
Everybody is essential
@hos7012
@hos7012 3 года назад
i don’t find the app on iphone
@_modiX
@_modiX 3 года назад
I don't like that a named constructor call looks like calling a static function in a class ...
@UrbanBDKNY
@UrbanBDKNY 5 лет назад
I don’t like when companies try to do their own thing. This reminds me of Netscape which had a bunch of “different” classes you could customize the browser with. Why I say that is because everyone is using components and you come with widgets. Just the name of a widget irks me. Widgets have been around conceptually for a long time. Too many “do it our way” things being done by Google. From promises being called Futures to Widgets instead of components etc The reason I will not support or work with Flutter for now is because Google decided to use Dart. For anyone who is actually old enough to remember, Dart tried to replace JavaScript, I believe in 2011. I think this is just a selfish attempt from Google to try to replace JavaScript. They could have used their other “massive” library in Angular here and chose not to React In general has shown major stability, unlike Angular who made some drastic breaking changes in its history. I m going to stick to React Native now because I actually enjoy JavaScript. JavaScript continues to grow with tooling and community support and projects and so does react. I m good Great video though. You did a great job. I just hate that I see right through what Google is trying to do. Their goal is to replace JS and that annoys me lol Here is an example link from 2011 www.reddit.com/r/programming/comments/kcwx2/google_dart_to_ultimately_replace_javascript/
@holdthesigninside9223
@holdthesigninside9223 5 лет назад
The voice doesnt sinc at the beginning
@Viralvlogvideos
@Viralvlogvideos 3 года назад
Dart is more like python 😁 8:28 private variable _ and also print() dart is sexy language but I wish there is back-end frame work for it like we have node js, Django
@Simawwn
@Simawwn 5 лет назад
You have the same voice as FreddieW
@layouceferie
@layouceferie 4 года назад
Sorry man but your react-native code is completly old now we use statelass and hook... I wanna try flutter but go back to class is hard for because it's feel like an old method :'(
@mateja176
@mateja176 5 лет назад
things.last hahahaa 👍
@LifeSuxTR
@LifeSuxTR 5 лет назад
Currently there is no reason to switch flutter from react native.
@Houseready01
@Houseready01 5 лет назад
Actually there is, Flutter is actually write once run everywhere while RN is learn once write everywhere, not the same
@NuwaHWeil
@NuwaHWeil 2 года назад
And now?
@adamgonsalez7824
@adamgonsalez7824 4 года назад
So it's a mixture of Python and JavaScript
@Jamguin
@Jamguin 4 года назад
More like Java & Javascript
@programmersoham
@programmersoham Год назад
watching this in 2023
@MehmetKoseDev
@MehmetKoseDev 5 лет назад
great explanation!
@ikgeek
@ikgeek 5 лет назад
How aobut you learn JS once and you can build Web, Desktop and Mobile apps. But same isn't true for Dart...
@AlexanderGusakov
@AlexanderGusakov 5 лет назад
Not true actually, read about Flutter on desktop (Windows, MacOS), on Tv and Raspberry Pie and even web (Hummingbird)
@Nulty16
@Nulty16 3 года назад
Did no one else hear the cat? 8:32
@e-benz
@e-benz 5 лет назад
Did you forget about Nativescrtipt?
@Fireship
@Fireship 5 лет назад
NS is always on the radar, but React Native wins the popularity contest so that's why it gets the comparison.
@carltongordon
@carltongordon 5 лет назад
!!!!!!!!!!!!!!!YES!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!YES!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
@afrizalmahendra656
@afrizalmahendra656 4 года назад
Halo i'm afrizal from java land. Lol :-*
@edwinsulaiman6143
@edwinsulaiman6143 3 года назад
i see dart i see c#
@pikachu5223
@pikachu5223 5 лет назад
Flutter vs Kotlin? Which one?
@moisesdc1
@moisesdc1 5 лет назад
More like Flutter foe the react developer (?)
@davidjentes404
@davidjentes404 3 года назад
lol fireship b4 wsl
@faiz697
@faiz697 5 лет назад
So Dart is more like C and java....noooiicceeee
@LucasOliveira-ny6kw
@LucasOliveira-ny6kw 5 лет назад
.
@gofudgeyourselves9024
@gofudgeyourselves9024 5 лет назад
Please provide subtitle you talk way too fast. Becomes difficult to understand for non English speakers.
@jameshobbs
@jameshobbs 5 лет назад
You realize you can select playback speed, right?
@gofudgeyourselves9024
@gofudgeyourselves9024 5 лет назад
@@jameshobbs yeah but I like at normal speed
@michaelwoodruff6634
@michaelwoodruff6634 5 лет назад
"Let's fade out the music and get into the code" I see what you did there. You listening to us.
@Fireship
@Fireship 5 лет назад
That's what I do! Incorporating feedback is very important to me.
5 лет назад
I wish all languages had a comparison 1:1 tutorial versus the languages it's based on. I always procrastinate before learning a new language because it's a pain in the ass go through the basics stuff. Your video in the other hand, go right into the topic!
@THEMRfatefighter
@THEMRfatefighter 5 лет назад
That's genuinly a great idea. I'll build a new channel and start with the basics: html vs C#
@themirac5614
@themirac5614 4 года назад
@@THEMRfatefighter have you done it yet?
@THEMRfatefighter
@THEMRfatefighter 4 года назад
@@themirac5614 dude, it was a joke. ^^ every language has it's application. Html is for web content, js for web scripting, python for apps (not efficient but quick to setup), c# for lengthy apps or games with classes and heritage, ect. The idea is great but it's like comparing wine and wiskey. Both are alcools but you just use them in different situations.
@aryanshmahato
@aryanshmahato 4 года назад
@@themirac5614 Man.. That was a joke😂😂
@psy667
@psy667 4 года назад
This can help you hyperpolyglot.org/
@darshangowda309
@darshangowda309 5 лет назад
JS is my wife, but flutter is my mistress! Awesome😂😂😂
@Fireship
@Fireship 5 лет назад
Love that quote 😂
@LukePighetti
@LukePighetti 5 лет назад
😂
@djpete2009
@djpete2009 5 лет назад
Lol!! I like it. Let's talk Darshan. Flutter app.
@JK92007
@JK92007 4 года назад
😀
@indahpratiwi4308
@indahpratiwi4308 4 года назад
Shutup harami
@CodingCatDev
@CodingCatDev 5 лет назад
Super helpful comparison! Every time I create a demo Flutter app I resist going any further because it reminds me of Java in college and I don't want to go back there 😺.
@Fireship
@Fireship 5 лет назад
I've never worked with Java, but it feels like a sibling to TS, or kinda like JS & C# had a baby.
5 лет назад
But Java is nice af!
@devilmanscott
@devilmanscott 5 лет назад
@ Nope. Kotlin, Scala and Clojure are nice, Java is a bloated mess, forced only to be OOP.
@chop098
@chop098 4 года назад
@@devilmanscott there isn't a suitable alternative for java for large-scale infrastructure
@ghevisartor6005
@ghevisartor6005 3 года назад
@@chop098 c#?
@digitalalliance4283
@digitalalliance4283 5 лет назад
look like we have too many choice to develop programming in 2019
@jjjjjjjjwwjwjw
@jjjjjjjjwwjwjw 5 лет назад
Web -> JS, Hybrid -> Dart, Native -> Swift/Kotlin Doesn't seem too bad.
@ownagejuice1394
@ownagejuice1394 5 лет назад
Ji Park and by Web we mean Vuejs or Svelte haha
@brandongonzales9687
@brandongonzales9687 5 лет назад
@@jjjjjjjjwwjwjw You mean, web => JS, PHP, Python, Ruby, Java, Kotlin. Desktop => Electron, Rust, C, C++, Python, C#, Java, Kotlin. Mobile => Java, Kotlin, Ionic, Flutter, Nativescript, React Native.
@okie9025
@okie9025 4 года назад
@@jjjjjjjjwwjwjw Flutter isn't hybrid, it uses native components. React Native is hybrid
@mr_ks_gaming
@mr_ks_gaming 4 года назад
@@jjjjjjjjwwjwjw Flutter isn't hybrid , it's cross platform.
@MarcoAZeballosS
@MarcoAZeballosS 3 года назад
This is why I jump to your videos whenever I want to learn a new technology or language, your work is special man, thanks for your effort making things effortless to us.
@rodrake1
@rodrake1 5 лет назад
I’ve never seen a developer talk so fast... do you speed up your videos? 😁
@Fireship
@Fireship 5 лет назад
Did that whole video in one take :) JK, I cut out dead air from the audio track.
@firaskudsy
@firaskudsy 5 лет назад
Only with ur videos.. i give like before start watching.. lol .. fully trust the content
@firaskudsy
@firaskudsy 5 лет назад
Jeff .. can u do a separate tutorial for state vs stateless in flutter .. and how to structure the files .. components .. services .. 🙏
@Fireship
@Fireship 5 лет назад
@@firaskudsy Thank you! Yes, I have a long list of topics. State management is a full video that will come soon, but project organization would be good also.
@firaskudsy
@firaskudsy 5 лет назад
@@Fireship one more question.. why we cant see the old tutorial and videos on fireship.. i mean the one on angularfire ..and would my subscription valid on fireship too ?
@Fireship
@Fireship 5 лет назад
@@firaskudsy yes, the angular firebase membership will work on both :)
@Benony91
@Benony91 5 лет назад
Last element in an array (even strings) in JavaScript: *element.slice(-1)*
@keokawasaki7833
@keokawasaki7833 4 года назад
I dont think anything would beat element.last in smoothness
@Benony91
@Benony91 4 года назад
@@keokawasaki7833 Not sure what you mean.. there is no last function for String or Array.
@keokawasaki7833
@keokawasaki7833 4 года назад
@@Benony91 that's exactly the point. javascript doesn't not have Array.prototype.last or anything like that. So we will have to rely on ugly or (mildly ugly like yours) solutions...
@Benony91
@Benony91 4 года назад
@@keokawasaki7833 haha yep! 😂 It's strange that something so trivial is missing..
@ThePandaGuitar
@ThePandaGuitar 4 года назад
Typical JS programmer response. Look again how shitty that code statement looks. Nothing beats element.last
@boradmay
@boradmay 5 лет назад
The animations in video are so well made.
@Fireship
@Fireship 5 лет назад
Thank you, I'm not an animator, just learned a few tricks after making so many videos.
@secondry2
@secondry2 5 лет назад
@@Fireship mind sharing? it's so cool!
@shaiker
@shaiker 4 года назад
12:38 nice stackoverflow right there
@JonathanCGroberg
@JonathanCGroberg 5 лет назад
Looks like a merger between a lot of good qualities from many languages. Its getting to the point where all languages are evolving toward the same end goal.
@corynorell3686
@corynorell3686 5 лет назад
I decided to build an app with Flutter a couple weeks ago, found your channel last week (which has been immense help) to brush up on my JavaScript for interviews, and then you release this. Quite astonishing timing I'd say.
@brhh
@brhh 4 года назад
atleast you found him
@bilalkureshi7437
@bilalkureshi7437 2 года назад
@@brhh yerp mates from other groups talking abt him so that's pretty much how I found him lol
@avi12
@avi12 5 лет назад
When I started to learn Dart, I immediately understood why Google wanted so badly to standardize this language for the web Such a good language that seems to me like a combination of Java and JavaScript, in a very good way I personally favor JetBrains software over Visual Studio Code, so I also benefit from quick-fix, which saves so much time In short, I can't decide what I love more - Dart or JavaScript
@Fireship
@Fireship 5 лет назад
Dart might not be exciting, but it's a very productive language. Almost everything just autocompletes with inline docs.
@mustofa_id
@mustofa_id 5 лет назад
Dart like Modern Java mix with JavaScript. Thanks for awesome video!
@code_report
@code_report 5 лет назад
This video was awesome! Love the side by side Typescript vs Dart! Would love to see more!
@elephant_888
@elephant_888 4 года назад
Great video. Bridging learning with a side-by-side comparison with javascript was genius.
@MikeCatrone
@MikeCatrone 4 года назад
I've been dabbling with Js and React Native for the past year, but just recently I decided to learn some Flutter/Dart and it's been a much easier experience so far
@hos7012
@hos7012 3 года назад
same
@StarryNightSky587
@StarryNightSky587 5 лет назад
Wait, Dart is still alive? :D
@CarlosBruno82
@CarlosBruno82 4 года назад
Thank you. That was what I was looking for. It will help me a lot in my migration from JavaScript to Dart. Sorry for my English. I used google translator.
@robertojarzembowski
@robertojarzembowski 5 лет назад
While you were reading this message, 5 new mobile frameworks were created.
@aybak3k
@aybak3k 4 года назад
feel da same 😂😂😂
@rickvian
@rickvian 3 года назад
and 4 of it die within months, the fifth survives until end of year, then 10 new mobile frameworks born from those mistake
@gouthambolt
@gouthambolt 4 года назад
I am new to JS and I find it not likeable. Can I choose to dive into flutter?
@jutsuuchiha3858
@jutsuuchiha3858 4 года назад
Dart doesn't have a large community
@willinton06
@willinton06 4 года назад
Depends, are you doing this for fun or to get a job? Cause if you want a job, JS is the safest choice, for fun? Flutter is the way
@MrHasanaki
@MrHasanaki 5 лет назад
so many frameworks shoot like mushrooms out of the ground - it is so hard to keep up with everything - impossible
@sortof3337
@sortof3337 4 года назад
I know I am late, but I have been doing Java my whole life and flutter seems like something I've been asking for but too afraid to check out. :P
@brhh
@brhh 4 года назад
than don't wait, java is dying
@rossmanmagnus
@rossmanmagnus 4 года назад
genius js dev, meh lip syncher
@ЭнрикеЧурин
@ЭнрикеЧурин 3 года назад
Flutter for JS developers: uses TypeScript
@Todiros
@Todiros 5 лет назад
I have a pretty ambitious application that I'm trying to build. It would be targeted for mobile users but as a single web developer, I would build a web app first using React on the Front End (not yet sure on the Back End). I thought of using React Native for mobile apps but then I heard it won't be optimal performance wise and that debugging in production would be a nightmare so I'm thinking that maybe I should use Flutter. I do like Dart and coming from C++ and C# it seems it won't be too difficult to get used to it. Still not quite sure.
@mohammadrasoulfard-habibi3066
@mohammadrasoulfard-habibi3066 5 лет назад
Give it a try buddy. Would love to know how you get on with it. Good luck 🤞
@_Amilio_
@_Amilio_ 3 года назад
Started with Flutter and now learning ReactJS and I can see a lot of similarities and where Flutter got it's inspiration from. React a lot easier to learn now.
@SprHero
@SprHero 5 лет назад
Looks really cool! Thanks for the comparison 👌
@dmitryrudenko4998
@dmitryrudenko4998 4 года назад
Flutter is gem!
@jouebien
@jouebien 2 года назад
my biggest issue with dart is that it hasn't go a native double type - any time you want to calculate money your stuck using a third party library which hasn't implemented comparators. My biggest issue with flutter is the bugs and the issue auto close robot which closes open bugs before they get fixed. I still have like 10+ bugs in flutter which are over a year old and are still broken.
@tomvanlieshout524
@tomvanlieshout524 5 лет назад
Great video. Just wish you'd have used a de-esser plugin on your voice recording.
@sourishdutta9600
@sourishdutta9600 5 лет назад
Stream of knowledge!!! Offfff !!! Cool Man. Thanks
@shoaibquraishi8302
@shoaibquraishi8302 5 лет назад
Played video with 0.75x speed 😂
@valikonen
@valikonen 4 года назад
I don't know why, but google make second hand programming languages, see: TypeScript vs. Dart, Flutter vs. React Native, Angular vs React, Traceur vs. Babel. Probably Go is the best product from google.
@alexpiano
@alexpiano 2 года назад
Always nice and instructive videos. If I may, music is a bit too loud in my opinion, tough to focus on what you're explaining.. until you stop the music of course.
@MrDzprofessional
@MrDzprofessional 5 лет назад
for the await for you can use map in js and await it with Promise.all(arrOfPropmises)
@GeraldScholz
@GeraldScholz 5 лет назад
I thought Dart would be more complicated and therefore I didn't touched it. But this looks pretty easy to get into.
@shafi2344
@shafi2344 5 лет назад
Plz make Nativescript tutorials as well. It is the best for solution for an angular developer for truely native app.
@Outthebots
@Outthebots 5 лет назад
how about nativescript :)
@nabin9363
@nabin9363 3 года назад
Now every js developer must learn in2021 , I love js , But i like flutter too . 😍😍😍😍
@MatthewChenIsAwesome
@MatthewChenIsAwesome 5 лет назад
Do you think it is quicker to write react.js and react native and reuse some code between them or write vue (im more comfortable with vue than react) on web and flutter on mobile? Having a really difficult time deciding rn :/
@itsdazing1279
@itsdazing1279 4 года назад
Question: Was that quizzes app build with flutter?
@the_primal_instinct
@the_primal_instinct 5 лет назад
"Lets implement promises but call them Futures just to fuck with people"
@NoThrottle
@NoThrottle 2 года назад
dart looks /a lot/ like c#. That doesn't say much though
@yolamontalvan9502
@yolamontalvan9502 3 года назад
Wow, this is what I call Learning at Warp Speed.
@donkeytrump
@donkeytrump 2 года назад
I dont know why people dont like Dart. Maybe it's because "Flutter exclusive".
@bibibobs
@bibibobs 5 лет назад
3:30 or press F5 and it will hot reload on save
@valquirsouza1329
@valquirsouza1329 2 года назад
Video amazing like usual, but the speaking javascript, in the beginning, is a little weird
@MechyBang
@MechyBang 5 лет назад
You, sir, are the shit! 🙌🏼🔥
@ivanpavlovnorth
@ivanpavlovnorth 4 года назад
Good material! How about using Android Studio for Dart Flutter?
@aymcorporation3456
@aymcorporation3456 4 года назад
I have just started using flutter since this month, its build time is better than java and it has Hot Reload feature and it's super fast, I really love Flutter.
@Astrotase
@Astrotase 4 года назад
I don't know shit but oh well
@VikramSinghVikroatwork
@VikramSinghVikroatwork 5 лет назад
I do like Dart though. Can code using an editor without that heavy android studio. P. S I have a 4gb Linux system but still 4gb is not enough these days and I need to update my skills fast to get a job in web development
@mohammadrasoulfard-habibi3066
@mohammadrasoulfard-habibi3066 5 лет назад
Am the same buddy.
@alooooooola
@alooooooola 4 года назад
that structure thing is so wrong and make me have a feeling you bias or sponsored by flutter. Of course react native can write on only one file like that and with react navigation v5 is much more less code. And the declare of thing when return is just lowkey react virtual dom it is so ugly
Далее
Flutter - Google SignIn from Scratch
12:06
Просмотров 107 тыс.
Новый вид животных Supertype
00:59
Просмотров 176 тыс.
Se las dejo ahí.
00:10
Просмотров 1,6 млн
JavaScript: How It's Made
10:54
Просмотров 881 тыс.
React Native vs Flutter - Which should you use?
22:31
My Final Flutter Video
14:26
Просмотров 109 тыс.
The JavaScript Survival Guide
14:47
Просмотров 728 тыс.
JavaScript Pro Tips - Code This, NOT That
12:37
Просмотров 2,5 млн
I built 10 web apps... with 10 different languages
14:23
Новый вид животных Supertype
00:59
Просмотров 176 тыс.