-
Notifications
You must be signed in to change notification settings - Fork 202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to display third level children ? #191
Comments
Unforutnately this isn't supported. There may be a way to do it yourself with the upcoming version, which has a bit more flexibility for customization. |
thanks for you prompt reply. Could you guide me how i can achieve this using your library? |
I had a look into it, and this is not currently possible, sorry. |
Hello! I managed to do a workaround until a feature with multiple layers of children is avaible.
FlatList in render method
|
I create a PR to feature it #279 |
Example:
{
name: 'Fruits',
id: 0,
children1: [
{
name: 'Apple',
id: 10,
children2: [
{
name: 'Apple something',
id: 60,
},
]
},
{
name: 'Strawberry',
id: 17,
},
],
},
The text was updated successfully, but these errors were encountered: