React Native SDK

This React Native SDK allows you to seamlessly integrate UIStream workflows into your cross-platform React Native applications. With UIStream, you can empower your users to interact with Decentro's powerful features while maintaining a near-native experience.

Getting Started

Installation: Add the Decentro Fabric SDK to your package.json file:

npm i decentrotech-fabric

Usage:

Use the following snippets as guides to add UIStream to your React Native app.

import { UIStreamWebViewScreen } from 'fabric';

export default function App() {  
  return (  
    <UIStreamWebViewScreen
      uistreamSessionUrl="<uistream_session_link>"
      debugMode={true}
    />  
  );  
}