Warning when using nested ListView in native app: measureLayoutRelativeToContainingList threw an error

2
How to avoid this warning when using nested ListView in native app ?   measureLayoutRelativeToContainingList threw an error value@http://192.168.18.9:8083/index.bundle?platform=ios&dev=false&minify=true:257:20846 @http://192.168.18.9:8083/index.bundle?platform=ios&dev=false&minify=true:257:4704 @http://192.168.18.9:8083/index.bundle?platform=ios&dev=false&minify=true:264:3662 f@http://192.168.18.9:8083/index.bundle?platform=ios&dev=false&minify=true:101:185 v@http://192.168.18.9:8083/index.bundle?platform=ios&dev=false&minify=true:101:328 y@http://192.168.18.9:8083/index.bundle?platform=ios&dev=false&minify=true:101:382 k@http://192.168.18.9:8083/index.bundle?platform=ios&dev=false&minify=true:101:677 Ce@http://192.168.18.9:8083/index.bundle?platform=ios&dev=false&minify=true:101:13198 Y@http://192.168.18.9:8083/index.bundle?platform=ios&dev=false&minify=true:101:5365 @http://192.168.18.9:8083/index.bundle?platform=ios&dev=false&minify=true:101:13546 xe@http://192.168.18.9:8083/index.bundle?platform=ios&dev=false&minify=true:101:92705 Re@http://192.168.18.9:8083/index.bundle?platform=ios&dev=false&minify=true:101:12996 ze@http://192.168.18.9:8083/index.bundle?platform=ios&dev=false&minify=true:101:13385 receiveEvent@http://192.168.18.9:8083/index.bundle?platform=ios&dev=false&minify=true:101:13795 value@http://192.168.18.9:8083/index.bundle?platform=ios&dev=false&minify=true:58:3493 @http://192.168.18.9:8083/index.bundle?platform=ios&dev=false&minify=true:58:748 value@http://192.168.18.9:8083/index.bundle?platform=ios&dev=false&minify=true:58:2539 value@http://192.168.18.9:8083/index.bundle?platform=ios&dev=false&minify=true:58:720 value@[native code]  
asked
1 answers
4

Hi,

React native cannot handle nested scroll containers. ListView is also a scroll container.

You may use the Repeater widget that Mendix supplies in Native Mobile Resources instead of the inner Listview or my Native Responsive Listview.

The outermost listview can remain a listview, it will show the scrollbar and allow scrolling.

answered