Skip to content

Latest commit

 

History

History

screen-orientation

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

React Native Embrace - Orientation Tracker

Important

This module requires React Native Embrace SDK.

Embrace can collect basic session data and crashes as you've already seen in the Crash Reporting and Session Reporting sections. Embrace can also collect when your app changes its orientation Here's how you add the Orientation tracker to the session.

Install the component

yarn add @embrace-io/orientation-change-tracker

Or

npm install @embrace-io/orientation-change-tracker

Adding the method to your code

Add the useEmbraceOrientationLogger to your component

// Import the Embrace log method
import { useEmbraceOrientationLogger } from "@embrace-io/orientation-change-tracker";

const App = () => {
  useEmbraceOrientationLogger()
  return (
   ...
  );
};