Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Use media element play method when is looping is true and media is played to end (ios) #2006

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,8 @@ void PlayedToEnd(NSNotification notification)
{
avPlayerViewController.Player?.Seek(CMTime.Zero);
Controller.Position = Position;
avPlayerViewController.Player?.Play();

Play();
}
else
{
Expand Down Expand Up @@ -264,6 +265,7 @@ protected override void OnElementPropertyChanged(object? sender, System.Componen
case nameof(ToolKitMediaElement.Volume):
UpdateVolume();
break;

case nameof(ToolKitMediaElement.Speed):
UpdateSpeed();
break;
Expand Down