ste7en / react-native-beauty-webview

Easy configurable react-native web view with TypeScript types and SafeAreaView insets

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status Documentation Documentation

React Native Beauty Webview for easy usage

🌠 Diffs from the original repository

  • TypeScript interface βœ…
  • SafeAreaView compliant βœ…

🌟 Features

  • Easy usage
  • Easy to configure
  • Beauty UI
  • Default click and copy url
  • Open on browser
  • See title of website on header
  • Navigation

⭐ Screenshot

⬇️ Installation

Install react-native-webview

More information about installation of react-native-webview, click here

$ yarn add react-native-webview

or

$ npm install --save react-native-webview

Install @react-native-community/clipboard

More information about installation of clipboard, click here

$ yarn add @react-native-community/clipboard

or

$ npm install --save @react-native-community/clipboard

Link native dependencies for IOS

Link native dependencies of @react-native-community/clipboard and @react-native-community/react-native-webview. If your react native verison is lower than 0.60.x, you must check the official documentation of these packages to link correctly.

$ cd ios && pod install

Install our package

Either clone this repository and copy the src folder into your project or download the original package and copy the index.d.ts and index.js files.

πŸ”¦ Example Usage

import React, {useState} from 'react';
import {
  StyleSheet,
  View,
  TouchableOpacity,
  Text,
} from 'react-native';
import BeautyWebView from 'react-native-beauty-webview';

const App = () => {
  const [visible, setVisible] = useState(false);
  const onButtonPress = () => {
    setVisible(true);
  };

  return (
      <View style={styles.container}>
        <BeautyWebView
          visible={visible} // Reguired for open and close
          onPressClose={() => setVisible(false)} // Reguired for closing the modal
          url={'https://github.com/'}
          extraMenuItems={[
            {
              title: 'Extra Item',
              onPress: () => console.log('Extra Menu Item Clicked'),
            },
          ]}
        />
        <TouchableOpacity style={styles.button} onPress={onButtonPress}>
          <Text style={styles.text}>Open</Text>
        </TouchableOpacity>
      </View>
  );
};

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
  },
  button: {
    alignSelf: 'stretch',
    justifyContent: 'center',
    alignItems: 'center',
    padding: 8,
    backgroundColor: '#2196f3',
    marginHorizontal: 20,
  },
  text: {
    color: '#fff',
    fontSize: 16,
  },
});

export default App;

πŸ“Ž Config

Params Type Default Required Description
visible boolean false YES Visibility of modal
onPressClose function - YES Run on press the close button (You must set visibilty as false)
url string - YES URL of the website
backgroundColor string #fff - Background color of view
headerContent 'dark' or 'light' 'dark' - Content type of header items like icons
headerBackground string #fff - Background of header
progressColor string #2196f3 - Color of the progress bar
loadingText string 'Loading...' - Text of the loading
copyLinkTitle string 'Copy Link' - Text of the copy menu item
openBrowserTitle string 'Open on Browser' - Text of the opening on bowser menu item
extraMenuItems Array - - Extra menu items, you can see detail on usage part on above
animationType 'slide' or 'fade' 'slide' - Animation type of modal
progressBarType 'normal' or 'background' 'normal' - Progress bar type
onLoadEnd func - - Run at end of the loading
onLoadStart func - - Run before start loading
navigationVisible boolean true - Show navigation buttons
closeIcon Component - - Close icon of header
menuIcon Component - - Menu icon of header
onGoBack func - - Run at going back
onGoForward func - - Run at going forward

⚠️ Dependency

@react-native-community/react-native-webview

You must install @react-native-community/react-native-webview package correctly before use this package. For more information, please click here

@react-native-community/clipboard

You must install @react-native-community/clipboard package correctly before use this package. For more information, please click here

πŸ“‹ References

mxck/react-native-material-menu

For menu component, I took advantages of this resource. More information about this resource, please click here

About

Easy configurable react-native web view with TypeScript types and SafeAreaView insets


Languages

Language:JavaScript 100.0%