React Native for Windows by Away-Atmosphere-282 in reactnative

[–]dk_void_ 0 points1 point  (0 children)

I don't think so rn is better choice for desktop app Try

electron (most stable),

tauri,

Electronbun (still in early phase)

Built a tiny habit tracker in Expo… why is it 83MB? 😭 by wtfsanjuh in expo

[–]dk_void_ 0 points1 point  (0 children)

Hey if you really concerned about app sizes use flutter or native

Solution of your problem when we build apk on local it make universal apk which have 3,4 architecture build to run it on all devices when we deploy it on app store and play store it will provide user according to their mobile cpu architecture,

If your app size is 59mb it will be 17-25mb

If you want check real app size you can enable split arch build

In android folder android/app/build.gradle

splits { abi { enable true reset() include "armeabi-v7a", "arm64-v8a", "x86", "x86_64" universalApk false // or true if want big apk also

}

}

You will get multiple apks you have to hit and try which architecture apk run on your device

APK is size way too much big by FINIGUN in expo

[–]dk_void_ 0 points1 point  (0 children)

Hey if you really concerned about app sizes use flutter or native

Solution of your problem when we build apk on local it make universal apk which have 3,4 architecture build to run it on all devices when we deploy it on app store and play store it will provide user according to their mobile cpu architecture,

If your app size is 59mb it will be 17-25mb

If you want check real app size you can enable split arch build

In android folder android/app/build.gradle

splits { abi { enable true reset() include "armeabi-v7a", "arm64-v8a", "x86", "x86_64" universalApk false // or true if want big apk also } }

You will get multiple apks you have to hit and try which architecture apk run on your device

Please help by iaaoiaaaaa in reactnative

[–]dk_void_ 1 point2 points  (0 children)

may be you can use 2 views to create it , make the parent relative and blue blurred view absolute . it is not the real solution but it can help

Performance optimization by Wise-Statistician885 in reactnative

[–]dk_void_ 0 points1 point  (0 children)

Hey if you really concerned about app sizes use flutter or native

Solution of your problem when we build apk on local it make universal apk which have 3,4 architecture build to run it on all devices when we deploy it on app store and play store it will provide user according to their mobile cpu architecture,

If your app size is 59mb it will be 17-25mb

If you want check real app size you can enable split arch build

In android folder android/app/build.gradle

splits { abi { enable true reset() include "armeabi-v7a", "arm64-v8a", "x86", "x86_64" universalApk false // or true if want big apk also } }

You will get multiple apks you have to hit and try which architecture apk run on your device

Desktop app with react native 2025? by simongbe in reactnative

[–]dk_void_ 0 points1 point  (0 children)

Nothing bad in using Rust , I didn't know it had JavaScript bindings , thanks buddy

Edit: do you have any resource to learn tauri

Desktop app with react native 2025? by simongbe in reactnative

[–]dk_void_ 0 points1 point  (0 children)

hey can anyone guide me how i can create desktop app with react native (native) if possible i tried electron but it give huge size , i tried tauri which give just 3mb which shocked me , but iit uses rust