Add missing method Keyboard.isVisible()

Close #2651
This commit is contained in:
Mišo Belica
2024-03-20 15:13:32 +01:00
committed by Nicolas Gallagher
parent cc0439299e
commit 8cf720f0e5
@@ -10,7 +10,11 @@
import dismissKeyboard from '../../modules/dismissKeyboard';
// in the future we can use https://github.com/w3c/virtual-keyboard
const Keyboard = {
isVisible(): boolean {
return false;
},
addListener(): {| remove: () => void |} {
return { remove: () => {} };
},