6 ms·
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).
by yole 9y 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).
- maxdo 9y agoGreat 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.