Przeglądaj źródła

fix keyboardHeight

lucky1213 4 lat temu
rodzic
commit
c2eb019864
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1
    1
      packages/zefyr/lib/src/widgets/toolbar.dart

+ 1
- 1
packages/zefyr/lib/src/widgets/toolbar.dart Wyświetl plik

@@ -387,7 +387,7 @@ class ZefyrToolbarState extends State<ZefyrToolbar>
387 387
     } else {
388 388
       layers.add(
389 389
         Container(
390
-          height: MediaQuery.of(context).viewInsets.bottom,
390
+          height: editor.toolbarAction == null ? 0 : keyboardHeight ?? 300,
391 391
         ),
392 392
       );
393 393
     }