react-native-navigation-register-screens
TypeScript icon, indicating that this package has built-in type declarations

1.3.0 • Public • Published

react-native-navigation-register-screens

Easier way to register RNN components.

Example

Function Component

import {
  ScreenFC,
} from 'react-native-navigation-register-screens';
 
type MyFunctionComponentProps = {
  hello: string,
};
 
const MyFunctionComponent: ScreenFC<MyFunctionComponentProps> = ({
  hello,
  componentId,
}) {
  console.log(componentId);
  return (
    <View>
      <Text>{hello}</Text>
    </View>
  );
};
 
MyFunctionComponent.screenName = 'MyApp.Screens.MyFunctionComponent';
 
MyFunctionComponent.options = props => {
  console.log(props);
 
  return {
    topBar: {
      title: {
        text: 'Pushed screen title',
      },
    },
  };
};

Registering Screens

import {registerScreens} from 'react-native-navigation-register-screens';
 
registerScreens([MyFunctionComponent, MyClassComponent, MyPureComponent]);

With providers

If your using react-redux's Provider or other similar libraries, you can provide a third parameter as the callback function.

import {Provider} from 'react-redux';
import store from '../store';
 
registerScreens(
  [MyFunctionComponent, MyClassComponent, MyPureComponent],
  (Component) => (props) => (
    <Provider store={store}>
      <Component {...props} />
    </Provider>
  ),
);

License

react-native-navigation-register-screens is MIT licensed, as found in the LICENSE file.

Package Sidebar

Install

npm i react-native-navigation-register-screens

Weekly Downloads

80

Version

1.3.0

License

MIT

Unpacked Size

8.77 kB

Total Files

13

Last publish

Collaborators

  • karlmarxlopez