We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1969e8f commit 0f96c0dCopy full SHA for 0f96c0d
Platforms/Media/Blazor/ConcreteMediaPlayer.cs
@@ -53,7 +53,7 @@ public override bool PlatformIsShuffled
53
54
public override TimeSpan PlatformPlayPosition
55
{
56
- get { throw new NotImplementedException(); }
+ get { return _webPlayer.CurrentTime; }
57
}
58
59
protected override bool PlatformUpdateState(ref MediaState state)
Platforms/Media/Blazor/ConcreteVideoPlayer.cs
@@ -53,7 +53,7 @@ public override bool IsMuted
public override TimeSpan PlayPosition
+ get { return _player.CurrentTime; }
public override float Volume
0 commit comments