Stone.js API
    Preparing search index...
    • Render this application's pages as native screens.

      One of the two ways this renderer is enabled, the declarative one; the other is handing useReactNativeBlueprint to the application manifest. Pair it with @ReactNative() from @stone-js/react-native-adapter, which is what brings the events in.

      Type Parameters

      • T extends ClassType = ClassType

        The type of the decorated class.

      Parameters

      Returns ClassDecorator

      A class decorator applying the renderer's configuration.

      import { Routing } from '@stone-js/router'
      import { ReactNative } from '@stone-js/react-native-adapter'
      import { UseReactNative } from '@stone-js/use-react-native'

      @Routing()
      @ReactNative()
      @UseReactNative()
      @StoneApp({ name: 'my-app' })
      export class Application {}