5.0.0 • Published 9 months ago

react-nativescript v5.0.0

Weekly downloads
74
License
MIT
Repository
github
Last release
9 months ago

react-nativescript

React NativeScript is a JavaScript library that enables you to build NativeScript UIs using the industry-standard UI-building framework, React. In other words, it is a 'React renderer' for NativeScript.

Note: by default, react-nativescript will not be in development mode, meaning that it will hide debug logs and any warnings about common mistakes. To switch to development mode, set (global as any).__DEV__ = true; early in your startup process (e.g. before calling ReactNativeScript.start()).

Example Usage

Here is an example of starting up a minimal app without JSX nor HMR:

// app.ts
import * as React from "react";
import * as ReactNativeScript from "react-nativescript/dist/index";
import { $StackLayout, $Label } from "react-nativescript/dist/index";
import { Color } from "tns-core-modules/color";

const rootRef: React.RefObject<any> = React.createRef<any>();

ReactNativeScript.start(
    React.createElement(
        $StackLayout,
        {
            ref: rootRef,
            backgroundColor: new Color('green')
        },
        React.createElement(
            $Label,
            {
                color: new Color('blue')
            },
            "Hello, World!"
        ),
    ),
    rootRef
);

More comprehensive setup documentation can be found here: https://github.com/shirakaba/react-nativescript

5.0.0-beta.1

9 months ago

4.0.1

9 months ago

5.0.0

9 months ago

4.0.0

2 years ago

3.0.0-beta.1

3 years ago

3.0.0-beta.3

3 years ago

3.0.0-beta.2

3 years ago

2.2.0

3 years ago

2.1.0

4 years ago

2.0.0

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.5-beta.1

4 years ago

1.0.5-beta.2

4 years ago

1.0.5-beta.0

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

0.24.0

4 years ago

0.21.0

4 years ago

0.20.0

4 years ago

0.22.0-beta.0

4 years ago

0.23.0

4 years ago

0.18.0

4 years ago

0.17.0

4 years ago

0.16.0

4 years ago

0.15.0

4 years ago

0.14.0

4 years ago

0.13.0

5 years ago

0.12.0

5 years ago

0.11.0

5 years ago

0.10.0

5 years ago

0.10.0-alpha

5 years ago

0.9.1

5 years ago

0.9.0

5 years ago

0.8.1

5 years ago

0.8.0

5 years ago

0.7.0

5 years ago

0.6.0

5 years ago

0.5.0

5 years ago

0.4.0

5 years ago

0.3.0

5 years ago

0.2.0

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago