react-native-navigation的迁移库

Layouts.js 467B

12345678910111213141516
  1. const { isString, isArray } = require('lodash');
  2. const stack = (rawChildren, id) => {
  3. const childrenArray = isArray(rawChildren) ? rawChildren : [rawChildren];
  4. const children = childrenArray.map(child => component(child));
  5. return { stack: { children, id } };
  6. }
  7. const component = (component, options, passProps) => {
  8. return isString(component) ? { component: { name: component, options, passProps } } : component;
  9. }
  10. module.exports = {
  11. stack,
  12. component
  13. }