0.1.2 • Published 2 years ago

kdc-app-module-module v0.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

kdc-app-module

WebView integration library for different platforms

Installation

npm install kdc-app-module

Usage

import { ViewFB } from 'kdc-app-module';
import type { WebViewNavigation } from 'react-native-webview';


export const FbComponent = () => {
    
  const navegationHandle = (navState: WebViewNavigation) => {
    console.log('Valor de esta funcion navState  Vim-->', navState);
  };

  return (
    <ViewFB
      onNavegation={navegationHandle}
      customStatusBar={<ComponenText />}
    />
  );
};

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT


Made with create-react-native-library