From c282f3c1c1c82c99038ba1c346e985ed0aca2c15 Mon Sep 17 00:00:00 2001 From: Rishi Raj Singh <49035175+rish07@users.noreply.github.com> Date: Sat, 6 Mar 2021 15:10:43 +0530 Subject: [PATCH] Fix Import issue (#61) * Remove conditional import * fix pickWeb * Fix all issues * fix import issue Co-authored-by: Xin Yao --- lib/widgets/editor.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/widgets/editor.dart b/lib/widgets/editor.dart index e748373e..a9f90d73 100644 --- a/lib/widgets/editor.dart +++ b/lib/widgets/editor.dart @@ -110,6 +110,7 @@ Widget _defaultEmbedBuilder(BuildContext context, leaf.Embed node) { } Widget _defaultEmbedBuilderWeb(BuildContext context, leaf.Embed node) { + var ui = UniversalUI(); switch (node.value.type) { case 'image': String imageUrl = node.value.data;