Hi All,
While loading large dataset and having infinite loading uncaught exception appears on xcode:
and here is the code
<ScrollView Dock="Fill" SnapMinTransform="false">
<WhileScrollable ScrollDirections="Down" Invert="true">
<Callback Handler="{getNext}" />
</WhileScrollable>
<DockPanel>
<CogWheelReloadPeople Dock="Top" />
<StackPanel Dock="Fill">
<Each Items="{people.data}">
<Panel Padding="5" Background="#eee">
<Text Value="{key}" Font="gob" FontSize="13" TextColor="#666"/>
</Panel>
<StackPanel>
<Each Items="{items}">
<Panel >
<DockPanel Clicked="{showPerson}" Margin="0,0,0,0">
<Rectangle Height="80" Background="#eee" CornerRadius="5" Width="80" Dock="Left" Margin="7,7,0,7" Alignment="CenterLeft">
<fa_user ZOffset="1" FontSize="50" TextColor="#e1e1e1" Alignment="VerticalCenter" TextAlignment="Center" Margin="0,8,0,0" />
<Image ZOffset="999" StretchMode="UniformToFill" Url="{photo}" />
</Rectangle>
<StackPanel Alignment="VerticalCenter" Margin="7,3,7,7">
<Text Font="gob" TextColor="#35426f" Value="{fullName}" FontSize="14" />
<WhileTrue Value="{hasOrg}">
<Text TextColor="#6f72a5" Margin="0,5,0,0" Value="{organization}" FontSize="12" />
</WhileTrue>
<WhileTrue Value="{hasType}">
<Text Margin="0,5,0,0" Value="{type}" FontSize="12" TextColor="#6f72a5" />
</WhileTrue>
</StackPanel>
</DockPanel>
</Panel>
<Rectangle Fill="#eaeaea" Width="100%" Height="1" Margin="0,5,0,5" Alignment="TopCenter" />
</Each>
</StackPanel>
</Each>
</StackPanel>
</DockPanel>
</ScrollView>