React Native Dynamic Render

react-native-dynamic-render ·

Render from Json object

Examples

Installation

yarn add react-native-dynamic-render

or

npm i react-native-dynamic-render

Usage

import DynamicComponent from "react-native-dynamic-render";
import { Text, View } from "react-native";

export default function App() {

  const mapComponents = {
    text: Text, /* Or Your custom component */
    view: View
  };

  const props = {
    name: "view",
    _uid: "123",
    children: [
      {
        name: "text",
        _uid: "1234"
      },
      {
        name: "text",
        _uid: "12345",
        props: null
      },
      {
        name: "view",
        _uid: "123456",
        children: [
            {
              name: "text",
              _uid: "1234567",
              children: "some foo bar",
              props: {
                  first: "text foo",
                  second: "text bar"
              }
            },
            {
              name: "text",
              _uid: "12345678"
            },

        ],
        props: {
            first: "view foo",
            second: "view bar"
        }
      }
    ]
  };

  return (
    <DynamicComponent
        {...props}
        mapComponents={mapComponents}
    />
  ); 
}

Expected output

<View>
  <Text />
  <Text />
  <View
    first="view foo"
    second="view bar"
  >
    <Text
      first="text foo"
      second="text bar"
    >
      some foo bar
    </Text>
    <Text />
  </View>
</View>

Contributing

Thank you for your interest in contributing! Please feel free to put up a PR for any issue or feature request.

Give me a Star

If you think this project is helpful just give me a ⭐️ Star is enough because i don’t drink coffee 😃

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Download Details:

Author: moh3n9595

Demo: https://snack.expo.io/@moh3n95/react-native-dynamic-render

Source Code: https://github.com/moh3n9595/react-native-dynamic-render

#react-native #react #mobile-apps

React Native Dynamic Render
5.10 GEEK