/** * Sample React Native App * https://github.com/facebook/react-native * @flow */ import React, { Component } from 'react'; import { Platform, StyleSheet, Text, View, Button, NativeModules } from 'react-native'; var nativeModule = NativeModules.OpenNativeModule; // var analyticsModule = NativeModules.UMAnalyticsModule; const instructions = Platform.select({ ios: 'Press Cmd+R to reload,\n' + 'Cmd+D or shake for dev menu', android: 'Double tap R on your keyboard to reload,\n' + 'Shake or press menu button for dev menu', }); // set disable functionality: const configuration = { "modeConfig": { // setting the default display mode when opening // viewer、annotations、contentEditor、forms、digitalSignatures "initialViewMode": "viewer" }, // top toolbar configuration: "toolbarConfig": { "androidAvailableActions": [ "thumbnail", "search", "bota", "menu" ], // ios top toolbar left buttons "iosLeftBarAvailableActions":[ "back", "thumbnail" ], // ios top toolbar right buttons "iosRightBarAvailableActions":[ "search", "bota", "menu" ], "availableMenus": [ "viewSettings", "documentEditor", "security", "watermark", "documentInfo", "save", "share", "openDocument" ] }, // readerView configuration "readerViewConfig": { "linkHighlight": true, "formFieldHighlight": true } }; type Props = {}; export default class App extends Component { render() { return ( Welcome to React Native! To get started, edit App.js {instructions}