Procházet zdrojové kódy

fix keyboardHeight

lucky1213 před 4 roky
rodič
revize
c2eb019864
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      packages/zefyr/lib/src/widgets/toolbar.dart

+ 1
- 1
packages/zefyr/lib/src/widgets/toolbar.dart Zobrazit soubor

@@ -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
     }