nativeControls property

PlayerNativeControls nativeControls
getter/setter pair

Player Native Controls

These media controls show near the volume slider & on the lock screen in Windows 10. a.k.a System Media Transport Controls.

This class offers various methods to control its state, style & displayed info.

For more raw control, use NativeControls instead.

Player player = Player(id: 0);
player.nativeControls.status = NativeControlsStatus.paused;
player.nativeControls.update(
  albumArtist: 'Porter Robinson',
  album: 'Divinity',
  thumbnail: File('album_art.png'),
);

Implementation

late PlayerNativeControls nativeControls;