Test case:
<App>
<JavaScript>
var Observable = require("FuseJS/Observable");
var myList = Observable("this", "is", "a", "test");
module.exports = {
myList: myList
}
</JavaScript>
<StackPanel Background="#000">
<Each Items="{myList}">
<Panel Margin="10" Height="75" Visibility="Visible" HitTestMode="LocalVisualAndChildren">
<PageControl Active="contents">
<Page Background="#FFF">
</Page>
<Page Background="#FFF" Name="contents">
<Text Value="{}" FontSize="15" />
</Page>
<Page Background="#FFF">
</Page>
</PageControl>
</Panel>
</Each>
</StackPanel>
</App>
So everything displays correctly but it won’t swipe at all, or have a hitbox of any kind, even in design view you can’t select it.
IMPORTANT: if you remove <Each>
and just make one hard-coded instance in the UX, it’ll work. What?