React Native is kind of broken (they NEED to fix this)

Поделиться
HTML-код
  • Опубликовано: 17 янв 2025

Комментарии • 237

  • @t3dotgg
    @t3dotgg  3 месяца назад +91

    btw Posthog just added session replay to React Native and it's really dope (and still super cheap)

    • @prodByLavender
      @prodByLavender 3 месяца назад

      Does it work with native modules like maps, like Clarity does? Afaik Clarity is the only one that does this right though it's got its own issues going on especially on iOS

  • @wlockuz4467
    @wlockuz4467 3 месяца назад +123

    One of the most simple and fundamental components of UI - an input, turned into a complicated and unusable mess. Its just sad at this point.

  • @sdummy
    @sdummy 3 месяца назад +102

    The example on React-native docs is still uncontrolled. They do not pass the text value to the value prop of the input

    • @belkocik
      @belkocik 3 месяца назад

      If we do not pass a state reference to a value prop in TextInput component is it not controlled, even tho there is onChange function which is setting the state?

    • @MrMudbill
      @MrMudbill 3 месяца назад +7

      @@belkocik it's not controlled if it doesn't pass the value. It just listens for onChange and then updates its own local copy of the value. There's a risk that maybe the displayed (uncontrolled) value and the copy will fall out of sync, and that's bad. Not sure if this happens in practice though.

    • @user-ys6ql2hb3x
      @user-ys6ql2hb3x 3 месяца назад +1

      I have seen this issue where state updates were handled incorrectly, mutating state. The uncontrolled input made that bug much harder to spot.

  • @rusyaidimusa2309
    @rusyaidimusa2309 3 месяца назад +60

    Cool note: Resizing a TextInput on android is complete screwed in React-Native. If you enable multiline inputs, it always renders as single-line first, rerenders, then shows the multiline input.
    If you dare to use a multiline TextInput with reanimated, it will always break transitions!

    • @dealloc
      @dealloc 3 месяца назад +1

      TextInputs on Andrioid are broken in many ways.

    • @biskyy13
      @biskyy13 3 месяца назад +2

      it also does the multiline thing on ios :p

    • @gnom-om
      @gnom-om 3 месяца назад

      fix it and make PR why you crying here?

    • @rusyaidimusa2309
      @rusyaidimusa2309 3 месяца назад +4

      @@gnom-om I'll answer in good faith, I have tried, many have tried and failed to. These issues are just deeply ingrained in how TextInput is initialized, as lineheight is managed by react-native itself and not automatically set when EditText is rendered. I've spent maybe a few days trying to figure out how it sets line height under the hood to no avail. This issue has existed for perhaps years now.
      I opted to just not animate and live with the weird snappy resizing.

    • @pkop4
      @pkop4 3 месяца назад

      @@gnom-om Stupid. The Facebook engineers that get paid to work on it should fix it. I don't think he's "crying", he's making fun of how bad it is.

  • @joaoduarteribeiro
    @joaoduarteribeiro 3 месяца назад +19

    My favorite part about the RN TextInput is when you pass only the value without the onChange and see the chars being inputted for some milliseconds before before being deleted.

  • @felipepiubello4713
    @felipepiubello4713 3 месяца назад +5

    it is absurd we need someone like Dan to bring this to light, there are plenty of issues already open in the react-native repo since at least July 2018 but they just ignore it :)

  • @olalekanadekanmbi3771
    @olalekanadekanmbi3771 3 месяца назад +55

    6:21 can confirm react-hook-form bypasses this problem. I had this issue just yesterday and react-hook-form made it work seemlessly

    • @w1llm4nn
      @w1llm4nn 3 месяца назад +4

      Oh really nice - we’ve used Formik in the past and had this issue so if react hook form works I’d be keen to switch

    • @TheProcessor
      @TheProcessor 3 месяца назад +4

      Can you explain how with RHF source code?

    • @TheProcessor
      @TheProcessor 3 месяца назад

      @@olalekanadekanmbi3771 I checked and it ultimately uses a useState()

    • @NacefFromTN
      @NacefFromTN 3 месяца назад +1

      🎉

    • @olalekanadekanmbi3771
      @olalekanadekanmbi3771 3 месяца назад

      @@TheProcessor No Idea I just happen to find it as a fix to my problem

  • @KPBhan
    @KPBhan 2 месяца назад +9

    It's fixed in today's update 0.76

  • @Trucidare
    @Trucidare 3 месяца назад +10

    Few years back we were getting a trickle of support tickets about not being able to log in to the app. Turns out it was same class of bug (controlled inputs).. Kind of crazy cause back then no one talked about this.

  • @YasinAkimura
    @YasinAkimura 3 месяца назад +9

    Thats the reason I wrapped it in my own TextInput which is using a state manager but the inputs itself do not subscribe to the state they just update it. Only the place where you need to use these values subscribes to it and that fixes most issues.

  • @truthmatters7573
    @truthmatters7573 3 месяца назад +7

    Never thought I'd see the day Theo vindicates Flutter, but I'm here for it!

  • @ejyption
    @ejyption 3 месяца назад +34

    Handling Text Input example in React Native docs did NOT use the value prop in TextInput, they used the defaultValue prop.

    • @diosupremo4928
      @diosupremo4928 3 месяца назад

      Can you tell me in which part? At textinput doc it uses value

    • @ArisenDrake
      @ArisenDrake 3 месяца назад

      @@diosupremo4928 It's even in the video, take a loot at 12:14

    • @henriquematias1986
      @henriquematias1986 3 месяца назад +1

      Indeed, still Theo felt sick haha 😂

    • @TimvonOldenburg
      @TimvonOldenburg Месяц назад

      @@diosupremo4928 In what Theo showed at 11:58 - there's indeed state, but it's just used to keep track of the value, not to control the input.

    • @diosupremo4928
      @diosupremo4928 Месяц назад

      @@TimvonOldenburg I was talking about the official documentation, not about the video

  • @guittoplex
    @guittoplex 3 месяца назад +23

    Awesome framework which can't even do a damn text input. Great work, Facebook

    • @jhanschoo
      @jhanschoo 3 месяца назад +5

      I think it's porting React to native is doomed to super-leaky abstractions and duct taped with hopes and dreams.

  • @AbegazNap
    @AbegazNap 3 месяца назад +194

    and they say flutter is broken

    • @skayu2000
      @skayu2000 3 месяца назад +35

      Flutter is not broken. But will be extinct.

    • @devOnHoliday
      @devOnHoliday 3 месяца назад +23

      Flutter community is broke

    • @AbegazNap
      @AbegazNap 3 месяца назад +26

      @@devOnHoliday I don't need a "community" to build cross platform apps

    • @AbegazNap
      @AbegazNap 3 месяца назад

      @@skayu2000 if no more updates were made for flutter, I could write most apps on it for the forseeable future

    • @kkebo
      @kkebo 3 месяца назад +14

      @@AbegazNap lol

  • @EvertJunior
    @EvertJunior 3 месяца назад +7

    This is bad, having performance problems is understandable since the component rerender at every keystroke but losing the cursor position by default is definitely a severe bug and I've seen it happens in many apps, it's infuriating. I hope this gets the attention it deserves.

  • @codeChuck
    @codeChuck 2 месяца назад +1

    COOL STUFF :D Ads are so fun! The catch should always be there! They are a little obsessed with HEDGEHOGS :D SANIC🦶💙🦔, IS THAT YOU?

  • @shaunhamilton
    @shaunhamilton 3 месяца назад +24

    This makes me 90% confident my banking app is built with React Native, because the inputs do this. I always wondered what would be causing that.

  • @captainlennysub
    @captainlennysub 3 месяца назад +12

    React Native in 2018 was the most unstable project that I’ve ever used. I mean how can it error on rendering a list, display different error every time I rebuild/ empty cache, making it impossible to debug?
    Guess what, I gave up after 4 hours, rebooted and it started working again.
    Never using RN since then😢

    • @megamind452
      @megamind452 3 месяца назад +1

      I can feel the pain 😢

    • @wandenreich770
      @wandenreich770 3 месяца назад +1

      I feel you mahn...just recently I tried the getting started example on expo and it didn't work but weirdly when I use pnpm insteadbof npm it magically works..I think I'll just go with flutter now

    • @captainlennysub
      @captainlennysub 3 месяца назад

      @@wandenreich770 yes i think that is way better for now!

  • @notandyvee
    @notandyvee 3 месяца назад +14

    Im sorry theo. This wasnt your reaction when comparing it with flutter. But when someone whos well respected points out issues with evidence, all of a sudden, react isnt perfect? Its exactly why how people view you isnt consistent.

  • @owenwexler7214
    @owenwexler7214 3 месяца назад +3

    Remember when a newly scaffolded React Native CLI project would vomit 60 pages of cryptic unGoogleable error messages instead of starting? Pepperidge Farm remembers

  • @jouebien
    @jouebien 3 месяца назад +26

    I mean the bug I reported in 2019 about flutters broken label bottom padding is still broken. Actually every bug I ever reported to flutter has been not resolved and sacrificed to the auto close robot.
    Honestly I'd pick Capacitor with the react or vue hat if I had to pick a JS mobile framework. My ionic builds from 2017 would still compile & run. My RN expo projects won't even start until I jump through upgrading to latest and I've had the misfortune of doing that twice.

    • @lexsatre567
      @lexsatre567 3 месяца назад +8

      Don't understand why no one talks about how good capacitor is

    • @samuelscheit
      @samuelscheit 3 месяца назад

      ​@@lexsatre567 Capacitor is good, but the underlying web platform is not suitable for high quality mobile apps (atleast for ios).
      For example Gestures and animations only run at 60 fps or less on iOS Safari/WebView (unless you enable the 120hz experimental flag in the ios safari settings)

    • @erentr7167
      @erentr7167 3 месяца назад +2

      react native just breaks on minor package update or you trying to run 2 year old project. you need to change node versions, java version, gradle bs yada yada yada, but i still use it

    • @Pewpewz
      @Pewpewz 3 месяца назад +3

      My team is almost finished building a huge streaming app (>50M users) in React Native because it was built with Capactior originally and was SO bad. It's SO much more performant with React Native. Also so many things you can't do well with Capacitor.

    • @julienlecoq3539
      @julienlecoq3539 3 месяца назад

      @@Pewpewz I guess it really depends what you’re doing and how you optimized your code. I built a big app with Ionic + Angular + Capacitor and it’s running just fine.

  • @Innengelaender
    @Innengelaender 3 месяца назад +2

    I recently got rather annoyed that I couldn't get an autocomplete-input from a library to work with a controlled input, but it had an initialValue instead
    I guess now I know why that library did not allow for controlled inputs.

  • @robwatson826
    @robwatson826 3 месяца назад +1

    Argh we have this problem in an app, never realised it was down to the input being controlled! At least I now know there is a workaround for it

  • @repe0
    @repe0 3 месяца назад +8

    12:03 it used defaultValue, not value in the example?

    • @BenKingUK
      @BenKingUK 3 месяца назад

      Dude can’t even read

  • @JC-yy5nf
    @JC-yy5nf 3 месяца назад +2

    It's weird that react native is still the only js-based mobile platform solution that is still recommended by everyone, yet still is so broken and cumbersome. And it's not just inputs that are "broken".

  • @sebastianbergman7810
    @sebastianbergman7810 3 месяца назад +2

    We have had to adapt how we build forms because of these issues and our PMs does not understand that it's an issue with the framework and complains a lot over how we often need to spend time to handle this using complex solutions when they demand certain behavior we recommend against putting forms in like portalized BottomSheets, where it's a lot worse, when our Juniors also try passing state that then, what I've assumed make state pass through the JS bridge continuously "on change". Really hoped that the new arch was gonna solve this, so that it doesn't according to Dans example is mind-blowing to me! Wow.

  • @MsVsmaster
    @MsVsmaster 3 месяца назад +1

    this exists since the beginning, I remember the input lag when working at a fintech app I authored, damn this sux still out there..

  • @paxdriver
    @paxdriver 3 месяца назад +11

    If we need to add a denounce, then add debounce... Why is this terrifying? This feels like another chicken little situation to me.

  • @hsemink
    @hsemink 3 месяца назад +11

    Finally this gets some attention

  • @blinkz8200
    @blinkz8200 3 месяца назад +2

    That ramen was as pasty as the wall.

  • @tasheemhargrove9650
    @tasheemhargrove9650 3 месяца назад

    Another issue is the lack of native support for StompJS. It was a pain in the ass figuring out why I was getting the errors I was getting when trying to establish STOMP connections to my backend. A hacky workaround exists but there are 3-5 year old threads out there with many people asking why this hasn't been addressed.

  • @mrousavy
    @mrousavy 3 месяца назад +1

    The example in the official react native docs is uncontrolled. It's not a controlled input, so that guide is working fine and valid imo.
    I agree that controlled TextInputs should be explicitly warned against, it's not a good idea to use them.
    I wouldn't say RN is "broken", as you can simply use uncontrolled TextInputs and you're fine.

  • @willashley23
    @willashley23 3 месяца назад

    wow, I feel like I was being gaslit this whole time by my text input when the cursor jumps around. It was react native all along... They really need to fix this, it makes RN apps feel so cheap.

  • @salmanazam9444
    @salmanazam9444 3 месяца назад +1

    Speaking as an inexperienced RN developer, what is actually wrong with using a ref to grab the value when we need it?
    Its being managed by a state in the traditional way, but even there, we are having to update the state every time the input changes...
    And btw, I have some inconsistencies to report too. TextInputs in Android have a non-zero default padding while it is zero in iOS. In case of multiline inputs, the numberOfLines prop only works on Android, so a multiline input on iOS does not take as much height directly in the UI, while it does in Android depending on text size and numberOfLines...

    • @0x5D
      @0x5D 3 месяца назад

      As an intermediate RN developer, the issue as i understand is the way RN interfaces JS with native components. Basically everything is async. There's actually no way to "use a ref to grab the value" because that API doesnt exist. Only way is to go through the onChangeText prop.
      Theres this "new architecture" I keep reading about that might fix some things but its not stable yet.

  • @ps__9979
    @ps__9979 3 месяца назад +2

    make it hybrid?!
    even if input is controlled, let browser owns it, changes and values
    and react state updates will be debounced, just to keep up with changes but way less hammering
    this way you get the speed and centralized state

  • @llanesluis19
    @llanesluis19 3 месяца назад +1

    Hi Theo, the static/dynamic devtools come with the canary version of next 15?

  • @Seanmclem
    @Seanmclem 3 месяца назад +3

    It’s like a foot gun problem, it’s really super easy to just not point at your foot. But everyone’s like OMG the foot gun.

  • @BenniK88
    @BenniK88 3 месяца назад +4

    Fronend dev is fun: “Crying”

  • @lovebes
    @lovebes 2 месяца назад +1

    Why is this an issue now? I'm a bit surprised. This is like web app 101

  • @diggy531
    @diggy531 3 месяца назад

    I have an app in production built on top of react-native and have never had this issue in prod, only on the simulator. The only input type that had something similar was when using password type input.

  • @benjaspet
    @benjaspet 3 месяца назад

    this is the guy who spoke at a club at my school

  • @willcoder
    @willcoder 3 месяца назад +1

    Flutter for the win!

  • @danielvalenzuela7
    @danielvalenzuela7 3 месяца назад +9

    RN has been there for a while now, how can it be that this is "just picked up now"?

    • @r2in360
      @r2in360 3 месяца назад

      Because it wasn't an issue previously. It started happening on ios after some update there

  • @Aestareth_
    @Aestareth_ 3 месяца назад +1

    You mean like how the NextJs cache is broken ?

  • @absurd0000
    @absurd0000 3 месяца назад +3

    pls do actual ramen ads too

  • @hishnash
    @hishnash 2 месяца назад

    React tube is broken. In the end it is less work to build a native app for both platforms than to try to fix all the issues you get with react native (if you care about UX and accessibility)

  • @ashwinsnmv
    @ashwinsnmv 3 месяца назад +1

    This is bug is not noticeable for people using it with os keyboard. When you type with keyboard, the simulator kinda gets clogged

  • @codeChuck
    @codeChuck 2 месяца назад

    eslint replaces all unchanging let to const, you just need to hit save ctrl + s or close file for autosave then commit and push :D Apparantely he has not configured this rule in eslint
    It simplifies clarity of your intention. I'm not the one to teach Dan how to do stuff in JS, but do you intent on modifying a component? It just seems a bad tone :)
    On the positive note, Dan saved 2 letters while typing let vs const :D I would totally agree on this, if this metric would matter the most, but I think it is not. When tanspiled, let and const may even get converted to var :)

  • @alazaaaa
    @alazaaaa 3 месяца назад +3

    i am a noob here but is it possible to make the input an uncontrolled input that basically changes to a controlled input every 500ms or even every second. so its quick for the user with no delays and the info is sent upwards without clogging the thread. Seems like overkill to compute on every single letter input. If it is not possible could someone explain to my why my logic is of. thanks

    • @3pleFly
      @3pleFly 3 месяца назад +2

      If react native is like react then you'll get the warning that changing from controlled to uncontrolled is discouraged.

    • @farrellraafi1301
      @farrellraafi1301 3 месяца назад +1

      I think it's possible, but would the shadow dom (or whatever it is that diffing the JSX every render in RN) detect that it is the same TextInput or would just unmount it with an uncontrolled one and then remount it with a controlled one every 500ms and that would hog the cpu (and should cause bad UI sideeffects) wouldn't it?

    • @bullettime2808
      @bullettime2808 3 месяца назад +1

      it's definitely doable, shouldn't be very hard to implement in user land

    • @farrellraafi1301
      @farrellraafi1301 3 месяца назад +1

      Maybe mounting 2 TextInput that have one uncontrolled and the other controlled and invisible (although that would be another problem because RN doesnt have display none) would also solve the issue but its more of a hack

    • @wlockuz4467
      @wlockuz4467 3 месяца назад +2

      This would be a bad solution because the state can potentially be out of sync by 500ms or whatever arbitrary time you have picked.
      Imagine if someone pasted (not typed) a long text and hit submit within interval, they would recieve incorrect value.
      This is why uncontrolled input is the way to go, if you still want the input value in state you can hook up a setState in the onChange, or just use the reference.

  • @sheppa60
    @sheppa60 3 месяца назад

    Formik’s always been good to us.

  • @belkocik
    @belkocik 3 месяца назад

    Hope Dan influence should do some impact on React Native. He speaks facts!

  • @veerakumar1279
    @veerakumar1279 3 месяца назад

    there is a app called Rapido has this issue in production , still not fixed. you cannot type your destination location faster, you have to type slowly 😅

    • @chocolateimage
      @chocolateimage 3 месяца назад

      and have "rapid" in the name lol

    • @wlockuz4467
      @wlockuz4467 3 месяца назад

      @@chocolateimage Actually a great app for taxis and parcel delivery in India. Can't blame a start up for saving money by picking cross platform.

  • @N8X4TE
    @N8X4TE 3 месяца назад

    6:21 afaik Controllers in RHF doesn’t cause the parent component rerender

  • @enijar
    @enijar 3 месяца назад +2

    I stopped using controlled inputs a few years ago. Instead I use an onSubmit={(e) => Object.entries(new FormData(e.currentTarget))} on a form element which returns the form inputs into a nice object. So much more performant and extensible

  • @hanro50
    @hanro50 2 месяца назад

    I noticed this lol.
    Changed a lot of stuff to work around it.

  • @mr.random8447
    @mr.random8447 3 месяца назад +3

    Just use Swift UI

  • @narcissisticnarcissus4956
    @narcissisticnarcissus4956 3 месяца назад +3

    You'd learn more about Flutter.
    It is frustrating that you have said many false things about Flutter in your previous videos, and use it as a poor catch phrase like you did in this video.
    Just to be clear: I am a FE/React developer first, but my go-to mobile tech for mobile is Flutter. Though RN is good as well.

  • @rawallon
    @rawallon 3 месяца назад

    Is Dan brazilian? He went back to twitter the same time twitter was unblocked on Brazil

  • @codeChuck
    @codeChuck 2 месяца назад

    THIS IS NOT FLUTTER! GOT ME LAUGHING :D

  • @saggygnaw
    @saggygnaw 3 месяца назад

    Nobody’s going to complain that it’s "the quick brown fox"?

    • @adityaanuragi6916
      @adityaanuragi6916 3 месяца назад

      Were you expecting the whole pangram
      "the quick brown fox jumps over a lazy dog"

  •  3 месяца назад +2

    I do not understand why RN people always try to slame on flutter - IMO, if you have to do so you are afraid of something

    • @lessko9
      @lessko9 Месяц назад

      because being completely locked into a canvas isn't a solution either

  • @grgrsm
    @grgrsm 2 месяца назад

    generally it's not a problem because on a phone you cannot type fast or hold to repeat the keystroke. Also if you analyze the performance and rerendering caused by controlled inputs it's quite obvious that you need to consider the uncontrolled way, or at least it should light up the bulb to try and look for alternative since it makes no sense, or suspicious whether the facebook devs really designed it work like this or it's a simple demo for people that just starting, and if you're not just starting then you should be already aware of the alternatives, the differences, and the consequences of each approach. It's enough to read about refs to replace state with refs in case of inputs when necessary. You don't need warning for that. What if you do want to use state for some reason?
    Really, I think people are bored and complain for the sake of complaining and attention, or have ptsd and need to vent on something relatable.

  • @BennyAlex98
    @BennyAlex98 2 месяца назад

    which browser is this A symbol?

  • @yewo.m
    @yewo.m 3 месяца назад +1

    As a React/Typescript fanboy, I was always in favour of RN over Flutter as something I could use in the future if I needed to. But nowadays, seeing all the feedback people have about their experiences with it, I'm slowly coming to terms with the fact that it might not actually be a better option

    • @threepe0
      @threepe0 3 месяца назад

      Why does everyone seem to want tools to do everything for them, get mad when the tools allow them to shoot their own foot, and then also get mad when the tools don’t allow low-level access (which would absolutely result in more feet hurt)

  • @stoogel
    @stoogel Месяц назад

    Has Theo been shilling React Native in the past without having used it or

    • @t3dotgg
      @t3dotgg  Месяц назад

      I shipped 6 react native apps and work with it regularly, I’m just not currently working on any RN projects

  • @sevilnatas
    @sevilnatas 3 месяца назад

    Is React Native the go to for mobile dev? I am an enterprise dev and never really dip my toes into mobile dev but want to build a mobile app for myself on iOS. Seems like learning React Native would be a lot more useful than learning Swift, since js is so much more widespread, but I don't want to pick the wrong foundation and get stuck with a cluster f.

    • @adivmt
      @adivmt 3 месяца назад +1

      React native is good framework, lot of big tech giants using it

  • @landsman737
    @landsman737 3 месяца назад

    Kotlin Multiplatform FTW.

  • @CrazyWinner357
    @CrazyWinner357 3 месяца назад

    Controlled inputs are required to restrict user from typing wrong things. So you cant do that on react native?

    • @ziembajan
      @ziembajan 3 месяца назад

      Of course you can. It works perfectly for example with react-hook-form.

  • @ikcikor3670
    @ikcikor3670 3 месяца назад +2

    Oh hey, isn't that the JS framework they use for Windows 11 system GUI components?

    • @syth-1
      @syth-1 3 месяца назад

      Not for everything but yes for a couple of things, windows does have its own UI framework, I dunno why they don't use their own tho, (ehm wpf, uwp, winUI3, etc etc)

    • @theairaccumulator7144
      @theairaccumulator7144 3 месяца назад

      @@syth-1 because react native abstracts over those things and microsoft keeps making windows-only non cross platform frameworks with weird quirks, trying to get people to learn them and switch to them then promptly deprecating them.

  • @ts8960
    @ts8960 3 месяца назад

    one of the things I hate about react native is that the CSS/html is different

  • @gofullstack
    @gofullstack 3 месяца назад

    10:03 🤣🤣🤣 In Flutter, you don't even have the option to pass value as a property

  • @golf-and-surf
    @golf-and-surf 3 месяца назад +2

    What is the issue with flutter?

    • @flutter-fm1kl
      @flutter-fm1kl 3 месяца назад

      Nothing

    • @mattmmilli8287
      @mattmmilli8287 3 месяца назад +2

      To me it’s uncanny valley of not feeling native. It’s sooo close in most cases but you can tell something is off compared to real native UI elements and functionality

  • @dasdassdarrrr
    @dasdassdarrrr 3 месяца назад

    Not gonna do the sign up till my marketing is up and have the stable one i want :).

  • @dei8bit
    @dei8bit 3 месяца назад

    long life to svelte ♥

  • @vpetryniak
    @vpetryniak 3 месяца назад

    What about TanStack form for react native?

    • @wlockuz4467
      @wlockuz4467 3 месяца назад

      This is a react-native problem not a library problem. If TanStack form uses controlled input it would be broken in the same way.

  • @soroushjm1011
    @soroushjm1011 3 месяца назад

    Guys you are messing the point, the point is do not use js outside of browser

    • @mattmmilli8287
      @mattmmilli8287 3 месяца назад

      That ship sailed long ago my friend. React is used as the hud in advanced US fighter pilot jet helmets is how far things have gone.
      I’m here for it :] making VR apps with react is a godsend compared to having to use Unity and no matter what the renderer, they all benefit from the constantly improving core

  • @marclp_es
    @marclp_es 3 месяца назад

    I thought I was crazy

  • @lukq90
    @lukq90 3 месяца назад +1

    OK do uncontrolled masked input :)

  • @Lutz64
    @Lutz64 3 месяца назад

    1:38 are you sure you want to deal with "hedgehog" fans

  • @vitinhuffc
    @vitinhuffc 3 месяца назад

    RN is awesome, when u work with it for a year. Then some stuff starts to smell... and thats sad cuz ive started to want to code some native java/kotlin

  • @JohnMichael-d1m
    @JohnMichael-d1m 3 месяца назад

    Not sure dont people just use KMP then?

  • @rms_6401
    @rms_6401 3 месяца назад

    Never had any kind of this on java, swing, fx, openui. If you want native be native

  • @guillaumehuardhughes
    @guillaumehuardhughes 2 месяца назад

    But it is kind of a edge issue.
    I'm not saying it should not be prioritise, but it is not as broken as it sound in the video.
    Did few apps and i never got the issue in a real case scenario.

  • @aymenbachiri-yh2hd
    @aymenbachiri-yh2hd 3 месяца назад

    thank you for this video

  • @ILsupereroe67
    @ILsupereroe67 3 месяца назад

    And such c**p is considered a mature framework that preople are supposed to use in production? Unbelievable

  • @ahmoin
    @ahmoin 3 месяца назад

    this is giving me flutter vibes

  • @gayalmn
    @gayalmn 3 месяца назад +3

    Why is he always complain about Flutter? I wonder what kind of bad experience he had with it, maybe really old versions. It always worked fine for me and issues are generally fixed fast enough.

    • @varadkulk
      @varadkulk 3 месяца назад +4

      Just hate towards Google
      In the Arc video too he hated on Firebase when it was Arc team's fault

  • @UbuntuBanksie
    @UbuntuBanksie 3 месяца назад +1

    I use controlled inputs in React Native just fine. Sounds like fake news

  • @dira4734
    @dira4734 3 месяца назад

    Thats not a simulator problem? never happend to me while developing on my phone, only in ios simulator happend in my case

  • @quanghuyng6698
    @quanghuyng6698 3 месяца назад

    ✅Angular
    ✅Ionic - Capacitor
    for better experience

  • @Z4KIUS
    @Z4KIUS 3 месяца назад

    so you're telling me you just have to do what you always did and was intuitive and natural to do instead of doing something weird and that's why people prefer doing the weird thing even though it's slow and poor UX?
    sounds like a modern development in the nutshell

  • @donnybystrom
    @donnybystrom 3 месяца назад

    No shit React Native is broken, I have used it for over six years and learned most of it's quirks, but I still bump into problems like one day starting the project and it just doesn't run - Is it because XCode had some silent update? I haven't touched the code! Its bad handling of caching is the most broken part of RN by far - And don't get me started on updating RN versions - at least a 2 day ticket, every time.

  • @guseynismayylov1945
    @guseynismayylov1945 2 месяца назад

    It's ironic how a framework designed to minimize re-renders causes a text input to re-render on every keystroke. Reactivity is a joke.

  • @saint.pickle
    @saint.pickle 3 месяца назад

    BRO FACEBOOK MESSENGER DOES THIS AND IT PISSES ME OFF 😂 7:18

  • @harveerSingh-iy9xz
    @harveerSingh-iy9xz 3 месяца назад +1

    You guys are spreading lots of useless roumers
    Tell me why the instagram is using react native have they ever changed their stack?
    Every stack has its own pros and cons and engineers are handling the problems accordingly

  • @thewayfaringshadow
    @thewayfaringshadow 3 месяца назад

    Welcome to App Development.

  • @defaultpassword
    @defaultpassword 3 месяца назад +6

    Personally I think your sponsor segments are quite awkward, which is why I almost instantly fast-forward, if they were more engaging like LTT's, then I wouldn't have an urge to skip.

    • @theairaccumulator7144
      @theairaccumulator7144 3 месяца назад +1

      If you instantly fast-forward just install the Sponsorblock extension, it does the same thing but automatically off a database of user provided timestamps for sponsor segments. If the timestamp isn't there already on a brand new video like this you can add it yourself and save others some of their time.

    • @erentr7167
      @erentr7167 3 месяца назад +2

      i agree to this, ltt does better job at that

    • @ridass.7137
      @ridass.7137 3 месяца назад

      the great return of crybabies 👶

    • @defaultpassword
      @defaultpassword 3 месяца назад

      @@ridass.7137 I'm just giving feedback to help Theo. The sponsor could realise that the sponsorship doesn't give them as many views as they're paying for, and could subsequently reduce the price they're paying or just stop the sponsorship.

  • @iGhostr
    @iGhostr 3 месяца назад +1

    That's why everyone chooses Flutter when they start a new project

  • @nemethricsi
    @nemethricsi 3 месяца назад

    Hmmm so that's why typing in WhatsApp is lagging these days? :O

  • @aleksandrnikitin7360
    @aleksandrnikitin7360 3 месяца назад +1

    React Native is broken