Skip to main content

2 posts tagged with "Navigation"

Articles about app navigation and routing

View All Tags

Deep Linking in React Native

· 3 min read
Full Stack Developer
Last updated on May 31, 2021

deep linking in react

In this tutorial, you are going to build a small demo by adding the feature of a deep linking in a React Native application. To support deep linking and navigation in the app, react-navigation library is going to be used. There are use cases in which using an external URL a user is going to transit to a specific screen in your application. This URL can be provided on a web page, for instance. Navigating to the exact screen in the React Native app from an external URL is what the process of Deep Linking is about.

Draw Directions on Maps in React Native

· 6 min read
Full Stack Developer
Last updated on March 10, 2021

draw directions intro

Today we’re going to draw directions route on a map in React Native, showcasing the path between two different locations. We’re going to make use of react-native-maps which is a powerful library, allowing us to draw polylines between multiple coordinates. We are also going to use Google Directions API, in order to fetch precise directions routes between two coordinates.