Skip to content

Instantly share code, notes, and snippets.

@jfversluis
Created December 23, 2019 20:11
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 jfversluis/c8095253f00a7313242515311dd38405 to your computer and use it in GitHub Desktop.
Save jfversluis/c8095253f00a7313242515311dd38405 to your computer and use it in GitHub Desktop.
<DataTemplate x:Key="MessageTemplate">
<SwipeView
HeightRequest="110">
<SwipeView.RightItems>
<SwipeItems
Mode="Reveal">
<SwipeItemView>
<Grid
WidthRequest="120"
BackgroundColor="{StaticResource BackgroundColor}">
<BoxView
Style="{StaticResource SwipeItemBorderStyle}"/>
<Image
Source="star.png"
Style="{StaticResource SwipeItemIconStyle}"/>
<Label
Text="Favourite"
Style="{StaticResource SwipeItemTextStyle}"/>
</Grid>
</SwipeItemView>
</SwipeItems>
</SwipeView.RightItems>
<!-- ... -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment