• merthyr1831@lemmy.world
    link
    fedilink
    arrow-up
    20
    arrow-down
    2
    ·
    edit-2
    4 months ago

    Eh. Crossplatform isnt the problem here; Xamirin is. There’s a host of next gen cross platform frameworks like Flutter, React Native, Blazor that save you having to maintain two distinct apps; something that’s only going to add a bunch of developer burden

    • fmstrat@lemmy.nowsci.com
      link
      fedilink
      English
      arrow-up
      11
      arrow-down
      1
      ·
      edit-2
      4 months ago

      Agree. Will it be as performant as native? No. But will it be plenty performant for a password manager, yes.

      The only thing I wish RN and Flutter would figure out is bloat. File sizes are huge compared to native. A shame there can’t be a shared model in mobile apps for the core system.

      • AMDIsOurLord@lemmy.ml
        link
        fedilink
        arrow-up
        7
        arrow-down
        1
        ·
        4 months ago

        Flutter is native. It gets compiled to an executable, it just takes a render plane from the underlying OS and renders everything in it’s own engine. They’re working on a new render system that will make it go even faster.

        React Native is just a fancy web browser wrapping with some helper APIs.

        • merthyr1831@lemmy.world
          link
          fedilink
          arrow-up
          3
          ·
          4 months ago

          RN is native too I think, at least it advertises itself as a way to compile some kind of XML syntax into native widgets on either platform. An improvement to PWAs even if I despise typescript

          • hruzgar@feddit.de
            link
            fedilink
            arrow-up
            1
            ·
            4 months ago

            yeah, it displays native widgets but there is still a js engine (browser) running in the background. So the basically made a layer between native components and Javascript. But the code which is running is js and js is slow.

        • aeharding@lemmy.world
          link
          fedilink
          arrow-up
          1
          ·
          4 months ago

          React Native is just a fancy web browser wrapping with some helper APIs.

          React native is not a browser. It uses native components.

      • merthyr1831@lemmy.world
        link
        fedilink
        arrow-up
        1
        ·
        4 months ago

        I guess smaller apps would be nice but that’s also a thing that can be helped - I have a handful of flutter apps on my phone right now (that i know of) and they run in at:

        18MB - Nextcloud recipes client

        50MB - Spotube (Youtube music client with spotify integration)

        100MB - My job - a savings and investments app, with half a dozen third party API integrations.

        So depending on your scope and stuff you can really build an app to whatever size. Cant account for react native or blazor but the idea is usually just abstract native graphics APIs instead of using a browser runtime.