pod_player
pod_player copied to clipboard
Translate option texts
Hi. How can I change options labels? Quality, loops, Speed text to my language?
Use the PodPlayerLabels on PodVideoPlayer, see the example:
PodVideoPlayer(
controller: controller,
podPlayerLabels: const PodPlayerLabels(
play: 'Play label customized',
loopVideo: 'Loop label',
quality: 'Quality label',
playbackSpeed: 'Speed label',
),
)