How to build a mobile application 👩‍💻

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 ต.ค. 2024

ความคิดเห็น • 245

  • @Dev-Siri
    @Dev-Siri ปีที่แล้ว +274

    React Native doesn't use a bridge anymore. In its new architecture (which has been released last year), there is a concept of an intermediary called a "JSI" (JavaScript Interface) that allows the native layer to directly talk to the JS layer (running on the optimized JS engine Hermes) unlike the previous architecture where the Bridge in the middle sent data over the threads serialized as JSON. It also has Fabric (newer && faster renderer) and also turbo modules to load native modules on demand.

    • @Dev-Siri
      @Dev-Siri ปีที่แล้ว +5

      ​@@Rex88282 bruh I don't even use React Native nor did I say if its better than other solutions. I just mentioned about the update that removed the old slow bridge with the faster JSI.

    • @ko-Daegu
      @ko-Daegu ปีที่แล้ว +8

      @@Dev-Siriso there’s still a bridge just a faster one ?
      I don’t see compiled to native (unlike the misleading name)

    • @Dev-Siri
      @Dev-Siri ปีที่แล้ว +4

      ​@@ko-Daegu well yes, but actually, no.
      The bridge was just a communication medium, think of it like sending an HTTP request over-the-wire. Previously there were 2 threads and 1 Tree:
      The main thread is basically just the Native Component layer that React Native renders with the components it gets from the JavaScript thread. There is also a seperate "tree" called the Shadow Tree which is responsible for calculating some dimensions or other stuff needed by the Main Thread to paint the UI to the screen. (This is basically the Virtual DOM that React uses although maybe slightly diff than what I said here). The JS thread runs a engine to execute the JavaScript bundle and then start sending responses.
      In RN you commonly use the or components, those are actually getting sent to the main thread as JSON through the bridge which get rendered thereafter (Previously used JS core, but since it needed to be shipped with Android since JS core is only available by default on iOS, they created a new engine called Hermes which consumes less memory, runs faster, and also helps in startup time)
      Now, theres no more of that bridge thing. We have the JS engine like before (now most of the time is Hermes) and the code written in TypeScript (mentioning TS specifically here because as far as I know, they do use the types). The new JSI (written in C++) holds reference to JavaScript event handlers and stuff with the types that I previously (I don't remember exactly how so I may be slightly wrong here but types are definitely used). Think of the new JavaScript interface like importing functions from a module. Then when something happens on the native side, the JSI executes the JavaScript it holds reference to for that particular element, and Ta-Da, we have the previous working stuff without the overhead of the bridge. Turbo modules are just a seperate feature RN added to reduce app startup time even further with on-demand loading. + The Fabric is also just a better & faster renderer than the one it used before.

    • @abdulmalikayorinde8657
      @abdulmalikayorinde8657 ปีที่แล้ว +2

      You go explain tire 😂

    • @DamianLesiuk
      @DamianLesiuk ปีที่แล้ว

      Hermes is not optimized. It does not contain jit, it doesn't execute native code at all, everything is interpreted where code flutter executes is compiled to native binary

  • @alangamer50
    @alangamer50 ปีที่แล้ว +112

    Basically, the higher up you go, you lose more performance and hardware access, but it gets easier

    • @ArachnidAbby
      @ArachnidAbby ปีที่แล้ว

      I would argue javascript is harder than kotlin/java. Javascript is a real piece of shit.

    • @feykroTV
      @feykroTV ปีที่แล้ว +13

      Unless you have a ton of web dev experience, I’d wager Flutter is easier to approach than Ionic+Angular

    • @ShortFilmVD
      @ShortFilmVD ปีที่แล้ว

      You also lose access to native components, I remember the dark days of writing slide out menus in Cordova.... Flutter FTW

    • @el_primer_y_el_ultimo_caiman
      @el_primer_y_el_ultimo_caiman ปีที่แล้ว +6

      revelatory 🤯🤯 i am so mind-blown with this incredible insight!

    • @qwertykeyboard5901
      @qwertykeyboard5901 8 หลายเดือนก่อน +1

      It's the old J2ME days again.

  • @mikeshilovski1512
    @mikeshilovski1512 ปีที่แล้ว +42

    Kotlin multiplatform is also a really great thing, that has a lot of potential i think. I've tried it myself (I'm android dev). And I am very impressed with this. I also tried react native in the past and the performance was really horrible back then (although maybe they have improved it over these few years)

    • @LaBoots
      @LaBoots ปีที่แล้ว

      Yup it’s awesome

  • @turkeyturkey3942
    @turkeyturkey3942 ปีที่แล้ว +36

    Hey Lewis, love your videos. Could you make a video on the different people behind creating an app and what the process looks like? Both the people on the business and tech side.

  • @arimaniac
    @arimaniac ปีที่แล้ว +12

    Flutter is mimicking the ui, not actually native.

    • @caglarkullu9275
      @caglarkullu9275 8 หลายเดือนก่อน

      Flutter compiles to native and uses method channels

  • @whiz-code
    @whiz-code ปีที่แล้ว +33

    I use Java for mobile dev (Android)

    • @SYEDHAMZAALI-lb5fm
      @SYEDHAMZAALI-lb5fm ปีที่แล้ว +5

      Us bro us😂❤

    • @alkadoHs
      @alkadoHs ปีที่แล้ว +1

      💀

    • @AlphaGamingWorld
      @AlphaGamingWorld ปีที่แล้ว +1

      Move on dude. Kotlin is the future

    • @SYEDHAMZAALI-lb5fm
      @SYEDHAMZAALI-lb5fm ปีที่แล้ว

      @@AlphaGamingWorld bro Kotlin is future in android only
      can u make APIs through Kotlin ?but u can make them in JAVA

    • @nesletchimaew9209
      @nesletchimaew9209 ปีที่แล้ว +2

      If you're learning kotlin, move directly to jetpack compose. I know the tutorials on the internet are bad, in some cases absolutely useless, but with some digging you can do it

  • @hashemmousavi2451
    @hashemmousavi2451 ปีที่แล้ว +5

    KMP will be a game changer

  • @justinian.erdmier
    @justinian.erdmier ปีที่แล้ว +22

    It's disappointing that you didn't mention MAUI.

    • @welcometochristown
      @welcometochristown ปีที่แล้ว +3

      Yea I agree, as a .NET developer who never did a lot of android programming in java, Maui has been very enjoyable to use and let me actually develop my app straight away. A few learning curves to navigate but overall I have been very impressed.

    • @zipur3364
      @zipur3364 ปีที่แล้ว +2

      Thank you for telling me about this

    • @apexashwin
      @apexashwin ปีที่แล้ว +1

      You should be disappointed on Microsoft for introducing a new framework and killing the existing one haha, .NET ecosystem is a joke

    • @cernunox
      @cernunox ปีที่แล้ว +1

      I agree, develop in MAUI has been a great experience so far, specially Blazor Hybrid 🎉

  • @JuanGarcia-qd8ig
    @JuanGarcia-qd8ig ปีที่แล้ว +8

    For Android a Flutter is a good option, and for IOS, therapy would be ideal

    • @rswierczynski
      @rswierczynski ปีที่แล้ว

      Swift is amazing

    • @JuanGarcia-qd8ig
      @JuanGarcia-qd8ig ปีที่แล้ว

      @@rswierczynski Yeah I guess if you haye yourself you could find it amazing

    • @justafreak15able
      @justafreak15able ปีที่แล้ว +2

      If you’re going to use two frameworks for android and ios then better write native apps

    • @JuanGarcia-qd8ig
      @JuanGarcia-qd8ig ปีที่แล้ว +1

      @@justafreak15able whoosh I guess

  • @fracta7
    @fracta7 ปีที่แล้ว +3

    There is also Compose Multiplatform, single codebase in Kotlin, Compose is great

  • @__Rizzler__
    @__Rizzler__ ปีที่แล้ว +9

    FLUTTER IS THE WAY. CHANGE MY MIND

    • @iDoComputers
      @iDoComputers 11 หลายเดือนก่อน +2

      the UI is ⭐️ garbage ⭐️

    • @__Rizzler__
      @__Rizzler__ 11 หลายเดือนก่อน +5

      @@iDoComputers you forget a thousand things a day. make sure this is one of them

  • @CodingWithLewis
    @CodingWithLewis  ปีที่แล้ว +15

    Cordova is actually EOL… lol

    • @ffslayers
      @ffslayers ปีที่แล้ว +4

      🤔what about capacitor ?

  • @unidosemprendedores
    @unidosemprendedores ปีที่แล้ว +3

    React native is very good and works quite good if you don't need something very hardware connected. Development is fast.

  • @potterloko0175
    @potterloko0175 ปีที่แล้ว +6

    You forgot .NET MAUI.

  • @arionpaul6208
    @arionpaul6208 ปีที่แล้ว +4

    Ionic + Capacitor

  • @aravinthdaya5066
    @aravinthdaya5066 6 หลายเดือนก่อน

    flutter or react native which one should i go in the case of future jobs and salary

  • @peacefuldeityspath
    @peacefuldeityspath ปีที่แล้ว +1

    Uhh Kotlin apps can compile to ios via KMM remember?

  • @jeffreyepiscopo
    @jeffreyepiscopo ปีที่แล้ว +5

    If you wanted to build an application that had a mobile app and a website, what backend would you use?

    • @hiwaforlife
      @hiwaforlife ปีที่แล้ว +1

      Django

    • @shlokbhakta2893
      @shlokbhakta2893 ปีที่แล้ว +3

      Flutter can do web, windows, mac, iOS, android, and linux from one code base. So that’s pretty cool. You could also use react native for web. That can turn your phone apps into a website with some drawbacks. I like dart so I pick flutter. If you like js more then react native for web is not a bad option. Whatever gets the job done 👍

    • @alfagroupkz
      @alfagroupkz ปีที่แล้ว

      It's always a question about how complex you want your app to be. If you want an app for the public with high traffic, then you better go for some low-level programming languages and its framework, such as Java -> Spring Boot. If you want a simpler and fast solution, then go for Go Language... It depends on a situation

    • @bavidlynx3409
      @bavidlynx3409 ปีที่แล้ว

      Django would be great but tbh any restful backend would work. Like node or django or fast api or literally anything. Performance wise you would have to compare but i know django so i would use that over anything else at least in the prototypical stages

    • @rgpflash7474
      @rgpflash7474 ปีที่แล้ว

      I would use Rust for backend, for performance, insane safety...

  • @sidelkins
    @sidelkins ปีที่แล้ว

    I’ve tried Flutter but just don’t love it as much as React/React Native. Wish I did because dependencies in RN are a pain

  • @banylp3632
    @banylp3632 ปีที่แล้ว

    Great video!! Could you make the video but for desktop gui

  • @AlphaGamingWorld
    @AlphaGamingWorld ปีที่แล้ว

    I guess he didn't mention Xamarin. I'm Kotlin developer tho

  • @CodeSnap01
    @CodeSnap01 11 หลายเดือนก่อน

    ok i am a web developer and if i have to build app i will make it in react native it will hardly matter

  • @feykroTV
    @feykroTV ปีที่แล้ว

    Since Flutter builds to native code, I wonder if there’s a real argument for not picking it up and going to react or ionic instead. Especially Ionic lol

    • @justafreak15able
      @justafreak15able ปีที่แล้ว

      Flutter code looks like a brain aneurism😂

  • @Adomas_B
    @Adomas_B ปีที่แล้ว

    An even higher level of abstraction for mobile apps is unity, but it's pretty limited outside of gamedev

  • @kyuss789
    @kyuss789 ปีที่แล้ว +3

    Flutter is above react native Is terms of “abstraction” react native creates actual native elements of the screen which is why you still have to consider platform differences. Like shadows on iOS vs elevation on android. Flutter DOES NOT compile to native binaries? It compiles the dart code to a binary and the UI is all rendered on a single canvas, which is much better than a web view but it’s very much not native.

    • @kyuss789
      @kyuss789 ปีที่แล้ว

      @@Rex88282 I don’t know about advantages. It’s just a different way of rendering UI

    • @dealloc
      @dealloc ปีที่แล้ว

      @@Rex88282I'd argue it has a ton of negative impact on UX across platforms. You shouldn't write one-size-fits-all native apps. You should consider how accessibility and UX works on either platform to keep consistent with the ecosystem and user expectations.
      Another downside of Flutter is that your widgets won't not be updated with the OS and can end up with the "Old Windows"-type issue, where it uses UI that does not conform to changes in a new OS release-and how do you then consider supporting older and new versions at the same time?

  • @hirick1322
    @hirick1322 ปีที่แล้ว +2

    What about android studio? It supports java and kotlin

  • @badgerbalti
    @badgerbalti ปีที่แล้ว +8

    What about .Net MAUI

    • @bo_0ss
      @bo_0ss ปีที่แล้ว +1

      Yep, I asked the same

  • @ernststravoblofeld
    @ernststravoblofeld ปีที่แล้ว +1

    I guess people who don't know c++ and java have to jump through a whole lot of hoops.

  • @AndrewDBrown2020
    @AndrewDBrown2020 ปีที่แล้ว +3

    What about .Net Maui?

  • @flutter-fm1kl
    @flutter-fm1kl ปีที่แล้ว +122

    Flutter is ❤

    • @abdultheseekerofknowledge4453
      @abdultheseekerofknowledge4453 ปีที่แล้ว +14

      REACT NATIVE > flutter

    • @ahmedbathily7013
      @ahmedbathily7013 ปีที่แล้ว

      ​@@abdultheseekerofknowledge4453react is Dead never close to flutter

    • @VictorMartins239
      @VictorMartins239 ปีที่แล้ว +14

      flutter is a nested hell

    • @shlokbhakta2893
      @shlokbhakta2893 ปีที่แล้ว

      @@VictorMartins239 one that I love to work with 😅
      Also… html 😐

    • @ahmedbathily7013
      @ahmedbathily7013 ปีที่แล้ว

      @@VictorMartins239 flutter is Far better than react but all of them are just tools to solve a particular problem

  • @stoicnash
    @stoicnash 9 หลายเดือนก่อน

    Ionic is using capacitor now. Its got more access

  • @idcrafter-cgi
    @idcrafter-cgi 11 หลายเดือนก่อน

    Why did you not mention Java for Android it's interoperable with Kotlin and C++?

  • @chijiokedivine1115
    @chijiokedivine1115 ปีที่แล้ว

    This Guy content is Gold❤

  • @HammondCoder
    @HammondCoder ปีที่แล้ว

    That “AHHH” at the beginning was truly beautiful💀

  • @AntranigVartanian
    @AntranigVartanian ปีที่แล้ว

    I guess you’ve never heard of Delphi.

  • @arshhashmi3992
    @arshhashmi3992 ปีที่แล้ว

    Lewis also: why you should not build mobile applications. 😅

  • @pontiacgtx4801
    @pontiacgtx4801 ปีที่แล้ว +1

    Maui... you can create even a webapp with mobile app...

  • @69k_gold
    @69k_gold ปีที่แล้ว

    I want to build something that can work on Windows and Android, what frontend stack would you recommend?

    • @romarmacaraeg661
      @romarmacaraeg661 ปีที่แล้ว

      It wasn't mentioned in the video, but in addition to android and ios, Flutter can also build web, windows, linux, and osx frontend apps. Keep in mind that not all flutter package works on all platforms

    • @hydranooni
      @hydranooni ปีที่แล้ว

      ​@@romarmacaraeg661please don't recommend Flutter for the web...a horrible idea, I personally would Flutter only for mobile apps

  • @UndeadKnightsStudio
    @UndeadKnightsStudio ปีที่แล้ว

    personnally i use C# for almost everything 😅 from Web API to mobile app, desktop app game etc

  • @nocturn9x
    @nocturn9x ปีที่แล้ว +6

    The day developers stop making native apps is the day we'll forget about actual performance. Fuck webapps :)

    • @rgpflash7474
      @rgpflash7474 ปีที่แล้ว

      Yes Native is always the best choice in my view

    • @nocturn9x
      @nocturn9x ปีที่แล้ว

      @@rgpflash7474 Agreed

  • @loloycarl
    @loloycarl ปีที่แล้ว +1

    Where's C# MAUI? You didn't know?

  • @brucearmstrong5536
    @brucearmstrong5536 ปีที่แล้ว

    React native & ionic what's the diff tho ?! Thought both are similar

  • @TechtalkAi2762
    @TechtalkAi2762 ปีที่แล้ว

    How about Java for android?

  • @ankurshah7328
    @ankurshah7328 11 หลายเดือนก่อน

    replace 'cordova' with 'capacitor' now! Cordova has now become old

  • @El-Gato-42
    @El-Gato-42 ปีที่แล้ว

    Qt framework + C++ is the way to go

  • @furyzenblade3558
    @furyzenblade3558 ปีที่แล้ว +3

    Last sentence is well said

  • @callmemk2460
    @callmemk2460 ปีที่แล้ว

    Interesting

  • @Familysusers
    @Familysusers 8 หลายเดือนก่อน

    I have a misunderstanding (which platform to create a app with official not third party way like google or something else

  • @ashutoshpattanaik3650
    @ashutoshpattanaik3650 ปีที่แล้ว

    Doesn't anyone know here , that compose multi-platform with kmm is now in production.

  • @maxmannstein
    @maxmannstein ปีที่แล้ว +22

    .NET MAUI ❤

    • @kpkent1983
      @kpkent1983 ปีที่แล้ว

      Throw in that blazor spice

  • @DIMA-yi6wn
    @DIMA-yi6wn 4 หลายเดือนก่อน

    What about MAUI?

  • @VaibhavPatil-rx7pc
    @VaibhavPatil-rx7pc ปีที่แล้ว

    excellent detailed information

  • @tuttoazzurri1
    @tuttoazzurri1 ปีที่แล้ว +1

    Lewis, ha u doin buddy?👋🏻🇮🇹

  • @vickoalan
    @vickoalan ปีที่แล้ว +2

    flutter is the Best

    • @otimist
      @otimist ปีที่แล้ว +2

      Native Kotlin is the Best

    • @ahmedbathily7013
      @ahmedbathily7013 ปีที่แล้ว

      ​@@otimistno flutter is the best and simple one code in everywhere

    • @shlokbhakta2893
      @shlokbhakta2893 ปีที่แล้ว +1

      @@otimistflutter is a good second

    • @ahmedbathily7013
      @ahmedbathily7013 ปีที่แล้ว

      @@shlokbhakta2893 there s no much different between flutter a and native like kotlin Android , flutter performance is not different from kotlin ,flutter very simple and fast to develop a app

    • @otimist
      @otimist ปีที่แล้ว

      @@vickoalan With Jetpack Compose you can achieve this too, as well as having greater control over the capabilities of the OS and hardware.

  • @Vert1go_
    @Vert1go_ ปีที่แล้ว

    this is an iceberg

  • @gulabpatel7477
    @gulabpatel7477 ปีที่แล้ว

    How about kmm ?

  • @EagleEye404
    @EagleEye404 ปีที่แล้ว

    Flutter doesn't compile to native. lmao

  • @I_OptimusPrime
    @I_OptimusPrime ปีที่แล้ว

    .NeT MAUI

  • @JohnWasinger
    @JohnWasinger ปีที่แล้ว

    Does Python fall anywhere in that stack?

    • @ArachnidAbby
      @ArachnidAbby ปีที่แล้ว

      Lookup Kivy

    • @petrlaskevic1948
      @petrlaskevic1948 ปีที่แล้ว

      no, not really. Theres kivy, but it is not well supported

    • @AzeUnkn0wn
      @AzeUnkn0wn ปีที่แล้ว

      I'm a python dev, and went to flutter. Dart is easy to learn. I made a flutter app and REST API server with dart in 2 months. 😁

  • @saxkid6206
    @saxkid6206 ปีที่แล้ว

    Flutter is great

  • @irfanyaqub9643
    @irfanyaqub9643 ปีที่แล้ว

    You forgot java baby. And half cooked information. Those cross platform have a lot of shortcomings.

  • @dodada-6050
    @dodada-6050 ปีที่แล้ว

    Kivy , kivyMD is also great 😸 python ❤

  • @DreadHalfling9
    @DreadHalfling9 ปีที่แล้ว

    How do i not use java?

  • @nygma6
    @nygma6 ปีที่แล้ว +1

    Flutterflow

  • @devilliersduplessis7904
    @devilliersduplessis7904 ปีที่แล้ว

    Maui

  • @honor_gamer
    @honor_gamer ปีที่แล้ว

    Wait, ThereIsNoGame logo?

  • @maxcrizguanzon3441
    @maxcrizguanzon3441 ปีที่แล้ว

    I use kivy and kivymd

  • @lmtr0
    @lmtr0 ปีที่แล้ว +1

    Kotlin multi platform

  • @yuvrajanand9342
    @yuvrajanand9342 ปีที่แล้ว

    So should i start with flutter or swift??

  • @Nenga117
    @Nenga117 ปีที่แล้ว

    I love flutter, but with the goal of getting a job making mobile apps I think I might have to switch to something else… react native??????

    • @shlokbhakta2893
      @shlokbhakta2893 ปีที่แล้ว

      If you want a job, react native is great! Flutter jobs just don’t pay as well 😢

    • @AlphaGamingWorld
      @AlphaGamingWorld ปีที่แล้ว

      ​@@shlokbhakta2893wht about native development.

  • @BlueJDev
    @BlueJDev ปีที่แล้ว

    hang on... Cordova is still a thing?? I thought that got shut down years ago?!

  • @laurentbajrami3688
    @laurentbajrami3688 ปีที่แล้ว

    Dont forget Maui

  • @zmemes69
    @zmemes69 ปีที่แล้ว

    native is still better at performance

  • @abhayprince
    @abhayprince ปีที่แล้ว

    And there is .Net MAUI

  • @matthewboyer4212
    @matthewboyer4212 ปีที่แล้ว

    that kotlin logo is dead

  • @bharath2508
    @bharath2508 ปีที่แล้ว

    flutter is my choice

  • @SamandarSdk
    @SamandarSdk 10 หลายเดือนก่อน

    Kotlin Multiplatform ❤

  • @thebeesnuts777
    @thebeesnuts777 ปีที่แล้ว

    I use AI , I basically talk in English I say don't do this and do that if you don't I will turn off the power
    😏

  • @roudikk
    @roudikk ปีที่แล้ว +1

    Compose multiplatform.

  • @soumyadeepchatterjee1807
    @soumyadeepchatterjee1807 ปีที่แล้ว +1

    Java ❤

  • @SahilSharma-im7md
    @SahilSharma-im7md ปีที่แล้ว

    Where's java

  • @ItsCOMMANDer_
    @ItsCOMMANDer_ ปีที่แล้ว

    Java

  • @ziomalxxz
    @ziomalxxz ปีที่แล้ว

    And MAUI ;)

  • @huh3
    @huh3 ปีที่แล้ว

    is there anyway to make one with python?

    • @morteza55510
      @morteza55510 ปีที่แล้ว

      What's next? Building ps6 ui and backend with python?

    • @huh3
      @huh3 ปีที่แล้ว

      @@morteza55510 I'm new to this sector.currently learning python. all I wanted is to gain some experience by this that's all.

    • @AkhtarReviews
      @AkhtarReviews ปีที่แล้ว +2

      Yes, with KivyMD.

    • @huh3
      @huh3 ปีที่แล้ว +1

      @@AkhtarReviews Thank you.

    • @shlokbhakta2893
      @shlokbhakta2893 ปีที่แล้ว

      @@morteza55510sure why not, most libraries already use c++ and rust as their backend lol.

  • @Rippersshow
    @Rippersshow ปีที่แล้ว

    Android also Java

    • @shlokbhakta2893
      @shlokbhakta2893 ปีที่แล้ว +1

      That’s true but Java makes me sad lol
      public static void main(String[] args)

    • @Rippersshow
      @Rippersshow ปีที่แล้ว

      @@shlokbhakta2893 lol Java is not fun that’s why I do react 😂

    • @ahmedbathily7013
      @ahmedbathily7013 ปีที่แล้ว +1

      @@Rippersshow react is not fun no more that why I chose flutter md vuejs there's Vue native

    • @ahmedbathily7013
      @ahmedbathily7013 ปีที่แล้ว

      @@shlokbhakta2893 there is no need any more to write public static void you can write so void main(){
      }

    • @Dev-Siri
      @Dev-Siri ปีที่แล้ว

      ​@@ahmedbathily7013It's
      void main( ) {}
      not
      main void( ) {}
      And this doesn't still mean it's simpler, it's only there so that hello world isn't as embarrassing as it was

  • @Pevi70
    @Pevi70 11 หลายเดือนก่อน

    .net Maui?

  • @premiumitservice755
    @premiumitservice755 ปีที่แล้ว

    Xamarin

  • @PLOTTHICC
    @PLOTTHICC 10 หลายเดือนก่อน

    English please );

  • @abdessalemmohellebi
    @abdessalemmohellebi ปีที่แล้ว

    Flutter is your uncle

  • @Nanagos
    @Nanagos ปีที่แล้ว +48

    Whenever I see React Native or Web wrapper apps: 🤢

    • @mirjalol49
      @mirjalol49 ปีที่แล้ว

      whyyy?

    • @Lucky5111
      @Lucky5111 ปีที่แล้ว

      @@mirjalol49 slow as shit.

    • @Rikonardo
      @Rikonardo ปีที่แล้ว +4

      ​@@mirjalol49 complex react native apps tends to be slow because of JavaScript, and web-based apps in addition to being slow also have poor integration with the OS

    • @rakeshchowdhury202
      @rakeshchowdhury202 ปีที่แล้ว

      ​@@mirjalol49cause bloatware

    • @fasterbaiter
      @fasterbaiter ปีที่แล้ว

      @@mirjalol49 slow

  • @AslamNazeerShaikh
    @AslamNazeerShaikh ปีที่แล้ว

    Dotnet MAUI is best 🎉

  • @yuuzuX
    @yuuzuX ปีที่แล้ว

    kotlin multiplatform

  • @cherubin7th
    @cherubin7th ปีที่แล้ว +1

    Easy tell ios users to go to North Korea. After all only such people would use such a device.

    • @shlokbhakta2893
      @shlokbhakta2893 ปีที่แล้ว

      You can’t deny that iOS users are real and you have to cater toward them when building an app lol. You leave soo much money on the table when not making an iOS app. All I’m saying is it’s a good idea
      - message sent from iPhone 😅

    • @AlphaGamingWorld
      @AlphaGamingWorld ปีที่แล้ว

      ​@@shlokbhakta2893ahh no. When comes to money it's directly proportional to demand. As android is most demanded you will find more users hence more ad impressions and more in-app purchase. Hence money is a no problem.

  • @coldcat8353
    @coldcat8353 ปีที่แล้ว

    Whenever I see flutter syntax 🤢

  • @ful_kush
    @ful_kush ปีที่แล้ว

    Kotlin Multiplatform Compose

  • @elcanpenahov435
    @elcanpenahov435 ปีที่แล้ว

    İ use Flutter

  • @atlaskaiser9951
    @atlaskaiser9951 ปีที่แล้ว

    Flutter should be above all

  • @themisterravenous1785
    @themisterravenous1785 ปีที่แล้ว

    tip: never use ionic :)

  • @billibobbarbar
    @billibobbarbar ปีที่แล้ว

    1st pin? 😅

  • @analid
    @analid ปีที่แล้ว

    Just because you can doesn't mean you should.