Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 982 Bytes

File metadata and controls

28 lines (18 loc) · 982 Bytes
id integration-with-existing-apps
title Integration with Existing Apps
hide_table_of_contents true

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'}, ]}>