This is a migrated thread and some comments may be shown as answers.

ItemSwipeContentTemplate is not animating out on swipe out

3 Answers 83 Views
ListView
This is a migrated thread and some comments may be shown as answers.
Brenden
Top achievements
Rank 1
Veteran
Brenden asked on 09 Feb 2021, 07:42 PM

When trying to swipe on iOS a drawer with row options, the items appear, but there is no animation, the moment we start swiping the items just appear as if hiding and unhiding 

 

<telerikDataControls:RadListView
           x:Name="SongList"
           Grid.Row="1"
           Margin="20,0,0,0"
           BackgroundColor="Transparent"
           IsItemSwipeEnabled="{Binding SongManagementViewModel.SwipeEnabled}"
           IsPullToRefreshEnabled="{OnPlatform Android=true,
                                               iOS=true,
                                               UWP=false}"
           IsVisible="{Binding ImportedIsVisible, Converter={StaticResource InverseBoolConverter}, FallbackValue=true}"
           ItemTapped="SongList_OnItemTapped"
           ItemsSource="{Binding SongManagementViewModel.Songs}"
           RefreshRequested="SongList_OnRefreshRequested"
           SelectionMode="Single"
           SwipeOffset="0, 0, 230, 0"
           VerticalOptions="FillAndExpand">
           <telerikDataControls:RadListView.ItemSwipeContentTemplate>
               <DataTemplate>
                   <Grid
                       Margin="0"
                       Padding="0"
                       ColumnSpacing="0"
                       RowSpacing="0">
 
                       <Grid.ColumnDefinitions>
                           <ColumnDefinition Width="*" />
                           <ColumnDefinition Width="Auto" />
                           <ColumnDefinition Width="Auto" />
                           <ColumnDefinition Width="Auto" />
                       </Grid.ColumnDefinitions>
 
                       <Button
                           Grid.Column="1"
                           BackgroundColor="{x:Static forms:Colors.MedBlue}"
                           Command="{Binding InfoCommand}"
                           Style="{StaticResource SlideOutOption}"
                           Text="Info" />
 
                       <Button
                           Grid.Column="2"
                           BackgroundColor="Black"
                           Command="{Binding AddToCommand}"
                           Style="{StaticResource SlideOutOption}"
                           Text="Add" />
 
                       <buttons:WordWrapButton
                           Grid.Column="3"
                           BackgroundColor="{Binding SongActionButtonColor}"
                           Command="{Binding SongActionCommand}"
                           Style="{StaticResource WordWrapSlideOutOption}"
                           Text="{Binding SongActionLabel}"
                           WidthRequest="{Binding SongActionButtonSize}" />
                   </Grid>
               </DataTemplate>
           </telerikDataControls:RadListView.ItemSwipeContentTemplate>

3 Answers, 1 is accepted

Sort by
0
Brenden
Top achievements
Rank 1
Veteran
answered on 09 Feb 2021, 07:44 PM
I would expect to see it slowly animate out as the user swipes
0
Brenden
Top achievements
Rank 1
Veteran
answered on 10 Feb 2021, 07:05 PM
Ticket has been created for this
0
Yana
Telerik team
answered on 12 Feb 2021, 12:23 PM

Hi Brenden,

Thank you for sending the ticket, we're looking into the case. 

I will send an update as soon as I have more information on this.

Regards,
Yana
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

Tags
ListView
Asked by
Brenden
Top achievements
Rank 1
Veteran
Answers by
Brenden
Top achievements
Rank 1
Veteran
Yana
Telerik team
Share this question
or