Back to React Native

Integration with Existing Apps

website/versioned_docs/version-0.81/integration-with-existing-apps.md

latest870 B
Original Source

import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';

import IntegrationApple from './_integration-with-existing-apps-ios.md'; import IntegrationKotlin from './_integration-with-existing-apps-kotlin.md';

React Native is great when you are starting a new mobile app from scratch. However, it also works well for adding a single view or user flow to existing native applications. With a few steps, you can add new React Native based features, screens, views, etc.

The specific steps are different depending on what platform you're targeting.

<Tabs groupId="language" queryString defaultValue="kotlin" values={[ {label: 'Android (Java & Kotlin)', value: 'kotlin'}, {label: 'iOS (Objective-C and Swift)', value: 'apple'}, ]}>

<TabItem value="kotlin"> <IntegrationKotlin /> </TabItem> <TabItem value="apple"> <IntegrationApple /> </TabItem> </Tabs>