Files
flipper/react-native/react-native-flipper
LeoTM 64469f5557 Upgrade react-native-flipper Android to Gradle 7 (#2619)
Summary:
- Resolve https://github.com/facebook/flipper/issues/2221

Pull Request resolved: https://github.com/facebook/flipper/pull/2619

Test Plan:
- Tested working example https://github.com/leotm/react-native-template-typescript
  - Commit 2fd5737c33

![Screenshot 2021-07-26 at 09 07 06](https://user-images.githubusercontent.com/1881059/126955174-cd96087f-5201-4d4a-bb4a-18c951979c86.png)

Reviewed By: cekkaewnumchai

Differential Revision: D29933807

Pulled By: passy

fbshipit-source-id: 1440eee21da134e9d9087a28ad95724738786f10
2021-07-28 15:43:29 -07:00
..
2020-05-28 09:59:53 -07:00
2020-07-17 17:18:36 -07:00
2020-03-04 19:00:20 -08:00
2021-07-28 04:05:49 -07:00

react-native-flipper

This package exposes JavaScript bindings to talk from React Native JavaScript directly to flipper.

This package might also be required by other Flipper plugins for React Native.

Installation

Run the following command in the root of your React Native project

yarn add react-native-flipper

Note that this package requires React Native 0.62 or higher.

Usage

How to build Flipper plugins is explained in the flipper documentation: Creating a Flipper plugin. Building a Flipper plugin involves building a plugin for the Desktop app, and a plugin that runs on a Device (Native Android, Native IOS or React Native). This package is only needed for the plugin that runs on the mobile device, in React Native, and wants to use the JavaScript bridge.

This package exposes one method: addPlugin. The addPlugin accepts a plugin parameter, that registers a client plugin and will fire the relevant callbacks if the corresponding desktop plugin is selected in the Flipper Desktop. The full plugin API is documented here.

Example

An example plugin can be found in FlipperTicTacToe.js.

The corresponding Desktop plugin ships by default in Flipper, so importing the above file and dropping the <FlipperTicTacToe /> component somewhere in your application should work out of the box.

The sources of the corresponding Desktop plugin can be found here.