Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Last active December 6, 2019 13:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icebeam7/c91a3fbfe191daac6d439b119b911806 to your computer and use it in GitHub Desktop.
Save icebeam7/c91a3fbfe191daac6d439b119b911806 to your computer and use it in GitHub Desktop.
XamarinAdventCalendarApp: PublicationView.xaml (RefreshView code)
<RefreshView IsRefreshing="{Binding IsRefreshing}"
Command="{Binding RefreshCommand}"
RefreshColor="Orange">
<ListView Grid.Row="1"
RowHeight="150"
SeparatorVisibility="None"
CachingStrategy="RecycleElement"
ItemsSource="{Binding Publications}">
<ListView.ItemTemplate>
<DataTemplate>
<cells:PublicationViewCell />
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</RefreshView>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment