Right now, ListView items are nested inside StackLayout. That is because of the strange behaviour of core which nests ProxyViewContainer inside StackLayout in the case of lists.
With this PR, we'll use ContentView which is a more lightweight solution.
Regarding the extra padding issue, it seems to be NativeScript theme's fault.
Right now, ListView items are nested inside
StackLayout
. That is because of the strange behaviour of core which nestsProxyViewContainer
insideStackLayout
in the case of lists.With this PR, we'll use
ContentView
which is a more lightweight solution. Regarding the extra padding issue, it seems to be NativeScript theme's fault.