Artur Bilski
Artur Bilski
+1 for fixing dynamic partials issue:
This issue happens when `render` is used as a standalone function instead of a method, do: ```javascript const root = createRoot(container) root.render() ``` instead of: ```javascript const { render }...
I had same issue and my style for KAV was: ``` flex: 1 ``` Inner `ScrollView` had `flex: 1` too. Just changing KAV style to `flexGrow: 1` fixed the issue.
I can confirm this issue. I had my trigger button inside `YStack` which in turn was inside `ScollView` and saw something very similar to this screenshot. When I extracted trigger...
Also `` does the trick.