Hacker News new | ask | show | jobs
by yole 3118 days ago
You can't reuse UI code between iOS and Android. You do have the ability to reuse the business logic code (domain models and so on).
1 comments

Great idea , but for many react apps (both native and JS) domain models doesn’t exists. Redux + graphql apps let me eliminate even more logic. So what we actually share between react native and react JS apps are : graphql queries, reducers, saga middleware. The rest is just UI. In my usecases there is nothing to share using Kotlin.