Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix: build and unit test name
  • Loading branch information
Andro999b committed Oct 31, 2025
commit 0bbed79b0614099af313ee3ee147195885fa7d0d
Original file line number Diff line number Diff line change
Expand Up @@ -1050,7 +1050,7 @@ void main() {
await tester.runAsync(controller.dispose);
});

testWidgets('buffering status', (WidgetTester tester) async {
testWidgets('duration update', (WidgetTester tester) async {
final VideoPlayerController controller =
VideoPlayerController.networkUrl(_localhostUri);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,9 @@ enum VideoEventType {
/// The video stopped to buffer.
bufferingEnd,

/// The video duration has updated.
durationUpdate,

/// The playback state of the video has changed.
///
/// This event is fired when the video starts or pauses due to user actions or
Expand Down