Component
registerComponent
#
Every screen component in your app must be registered with a unique name. The component itself is a traditional React component extending React.Component
or React.PureComponent
. It can also be a HOC to provide context (or a Redux store) or a functional component. Similar to React Native's AppRegistry.registerComponent
.
#
ParametersName | Required | Type | Description |
---|---|---|---|
componentName | Yes | string | Unique component name - not to be confused with componentId |
componentProvider | Yes | Function | Anonymous function that returns the React component to register, OR the component wrapped with Providers |
concreteComponentProvider | No | Function | Anonymous function that returns the concrete React component. If your component is wrapped with Providers, this must be an instance of the concrete component. |
#
Examples#
Registering a component#
Registering a component wrapped with ProviderssetLazyComponentRegistrator
#
Pass a function that will allow you to register a component lazily. When encountering an unknown component name, this function will be called, giving you a chance to register the component before an error is thrown.
#
ParametersName | Required | Type | Description |
---|---|---|---|
lazyRegistratorFn | Yes | (lazyComponentRequest: string | number) => void |
#
ExampleupdateProps
#
Update props of a component registered with registerComponent. Updating props triggers the component lifecycle methods related to updating.
#
ParametersName | Required | Type | Description |
---|---|---|---|
componentId | Yes | string | Unique component id |
options | Yes | object | props object to pass to the component |
#
Exampleimportant
updateProps
is called with a componentId. This is the same unique id components have in props. Don't confuse it with the componentName
we use when registering components with Navigation.registerComponent.