JSPM

react-native-foreground-background

0.0.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4
  • Score
    100M100P100Q36901F
  • License ISC

Foreground and Background for Reac-native

Package Exports

  • react-native-foreground-background

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-native-foreground-background) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

react-native-tele

UPDATE: Now is compatible with RN 0.60+ (AndroidX)

Support

  • Currently support for Android.

To do

  • Add ToDo

Examples

Installation

Usage

    import {ReplaceDialer} from 'react-native-replace-dialer';

    let tReplaceDialer = new ReplaceDialer();

    if (!tReplaceDialer.isDefault()) {
      console.log('Is NOT default dialer, try to set.');
      if (tReplaceDialer.setDefault()) {
        console.log('Default dialer sucessfully set.');
      } else {
        console.log('Default dialer NOT set');
      }
    }