UNPKG

@epubjs-react-native/core

Version:

A digital book reader in .opf .epub format for react native using epub.js library inside a webview.

19 lines 502 B
import React from 'react'; import { ActivityIndicator, Text, View } from 'react-native'; import { styles } from './styles'; export function LoadingFile({ downloadProgress, width, height }) { return /*#__PURE__*/React.createElement(View, { style: [styles.container, { width, height }] }, /*#__PURE__*/React.createElement(ActivityIndicator, { size: "large" }), /*#__PURE__*/React.createElement(Text, { style: styles.text }, "Loading ", downloadProgress, "%")); }