Render from Json object
-
Online simple example: https://snack.expo.io/@moh3n95/react-native-dynamic-render
-
Online advanced example: https://snack.expo.io/@moh3n95/react-navigation-dynamic-render
yarn add react-native-dynamic-render
or
npm i react-native-dynamic-render
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}
/>
);
}
<View>
<Text />
<Text />
<View
first="view foo"
second="view bar"
>
<Text
first="text foo"
second="text bar"
>
some foo bar
</Text>
<Text />
</View>
</View>
Thank you for your interest in contributing! Please feel free to put up a PR for any issue or feature request.
If you think this project is helpful just give me a โญ๏ธ Star is enough because i don't drink coffee ๐
This project is licensed under the MIT License - see the LICENSE.md file for details
Made with โค๏ธ by Mohsen Madani.