We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f68861d commit 68c814bCopy full SHA for 68c814b
example/lib/universal_ui/universal_ui.dart
@@ -34,6 +34,7 @@ Widget defaultEmbedBuilderWeb(
34
) {
35
switch (node.value.type) {
36
case 'image':
37
+ // TODO: handle imageUrl of base64
38
final imageUrl = node.value.data;
39
final size = MediaQuery.of(context).size;
40
UniversalUI().platformViewRegistry.registerViewFactory(
@@ -53,7 +54,9 @@ Widget defaultEmbedBuilderWeb(
53
54
),
55
56
);
-
57
+ case 'video':
58
+ // TODO: implement 'video' builder
59
+ return const SizedBox();
60
default:
61
throw UnimplementedError(
62
'Embeddable type "${node.value.type}" is not supported by default '
0 commit comments