We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SwipeCardView is not displaying the list to perform swipe/drag
xmlns:toolkit="clr-namespace:AP.MobileToolkit.Controls;assembly=AP.MobileToolkit"
ItemList = new ObservableRangeCollection<string>() { "Item 1", "Item 2", "Item 3" };
<toolkit:SwipeCardView ItemsSource="{Binding ItemList}" BackgroundColor="Red" SwipedCommand="{Binding OnSwipe}" SwipedCommandParameter="{Binding .}" DraggingCommand="{Binding OnDrag}" DraggingCommandParameter="{Binding .}" TopItem="{Binding .}"> <toolkit:SwipeCardView.ItemTemplate> <DataTemplate> <ViewCell> <StackLayout Padding="20"> <Label Text="{Binding .}" VerticalTextAlignment="Center" FontSize="Large" FontAttributes="Bold" /> </StackLayout> </ViewCell> </DataTemplate> </toolkit:SwipeCardView.ItemTemplate> </toolkit:SwipeCardView>
A list of items should display on screen
No item displays on screen
Project: ToolkitDemo Branch: issues/51/Demo-Project-More-Controls
The text was updated successfully, but these errors were encountered:
dansiegel
No branches or pull requests
Description
SwipeCardView is not displaying the list to perform swipe/drag
Steps to reproduce
Expected Behavior
A list of items should display on screen
Actual Behavior
No item displays on screen
Basic Information
Reproduction Link
Project: ToolkitDemo
Branch: issues/51/Demo-Project-More-Controls
The text was updated successfully, but these errors were encountered: