Skip to content

Commit

Permalink
Fix: platformViewRegistry getter is deprecated (flutter-webrtc#1485)
Browse files Browse the repository at this point in the history
The platformViewRegistry getter is deprecated and will be removed in a future release. Please import it from `dart:ui_web` instead.
  • Loading branch information
theniceboy authored Nov 29, 2023
1 parent 1775a7c commit 8fadfcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/web/rtc_video_renderer_impl.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import 'dart:async';
import 'dart:html' as html;
import 'dart:js_util' as jsutil;
import 'dart:ui' as ui;
import 'dart:ui_web' as ui;

import 'package:flutter/foundation.dart';
import 'package:flutter/services.dart';
Expand Down

0 comments on commit 8fadfcd

Please sign in to comment.