Created
December 16, 2019 14:54
-
-
Save jfversluis/e592a8d56bd8d8ff6de5b7b97b5c6510 to your computer and use it in GitHub Desktop.
SwipeView in Action
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="SwipeViewSample.MainPage"> | |
| <StackLayout HorizontalOptions="Center" VerticalOptions="CenterAndExpand"> | |
| <SwipeView> | |
| <SwipeView.LeftItems> | |
| <SwipeItems> | |
| <SwipeItem Text="Favorite" | |
| IconImageSource="favorite.png" | |
| BackgroundColor="LightGreen" | |
| Invoked="Favorite_Invoked" /> | |
| </SwipeItems> | |
| </SwipeView.LeftItems> | |
| <SwipeView.RightItems> | |
| <SwipeItems Mode="Execute"> | |
| <SwipeItem Text="Delete" | |
| IconImageSource="delete.png" | |
| BackgroundColor="LightPink" | |
| Invoked="Delete_Invoked" /> | |
| </SwipeItems> | |
| </SwipeView.RightItems> | |
| <!-- Content --> | |
| <Grid HeightRequest="60" WidthRequest="300" BackgroundColor="LightGray"> | |
| <Label Text="Welcome to Xamarin.Forms!" HorizontalOptions="Center" VerticalOptions="Center" /> | |
| </Grid> | |
| </SwipeView> | |
| </StackLayout> | |
| </ContentPage> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment