diff --git a/FabricExample/src/screens/Examples/OverKeyboardView/index.tsx b/FabricExample/src/screens/Examples/OverKeyboardView/index.tsx index 98f9bc5e92..fef56992f9 100644 --- a/FabricExample/src/screens/Examples/OverKeyboardView/index.tsx +++ b/FabricExample/src/screens/Examples/OverKeyboardView/index.tsx @@ -1,4 +1,4 @@ -import { BlurView } from "@react-native-community/blur"; +// import { BlurView } from "@react-native-community/blur"; import React, { useState } from "react"; import { Button, @@ -7,7 +7,10 @@ import { TouchableWithoutFeedback, View, } from "react-native"; -import { GestureHandlerRootView, TouchableOpacity } from "react-native-gesture-handler"; +import { + GestureHandlerRootView, + TouchableOpacity, +} from "react-native-gesture-handler"; import { OverKeyboardView } from "react-native-keyboard-controller"; export default function OverKeyboardViewExample() { diff --git a/android/src/main/java/com/reactnativekeyboardcontroller/views/overlay/OverKeyboardViewGroup.kt b/android/src/main/java/com/reactnativekeyboardcontroller/views/overlay/OverKeyboardViewGroup.kt index 751b642163..bbd9a0114e 100644 --- a/android/src/main/java/com/reactnativekeyboardcontroller/views/overlay/OverKeyboardViewGroup.kt +++ b/android/src/main/java/com/reactnativekeyboardcontroller/views/overlay/OverKeyboardViewGroup.kt @@ -26,7 +26,7 @@ class OverKeyboardHostView(private val reactContext: ThemedReactContext) : React hostView.eventDispatcher = dispatcher } - // region Lifecycles + // region life cycles override fun onDetachedFromWindow() { super.onDetachedFromWindow() @@ -96,7 +96,7 @@ class OverKeyboardRootViewGroup(private val reactContext: ThemedReactContext) : } } - // region Lifecycles + // region life cycles override fun onAttachedToWindow() { super.onAttachedToWindow() isAttached = true diff --git a/cspell.json b/cspell.json index 3edf36f606..4c8068acc4 100644 --- a/cspell.json +++ b/cspell.json @@ -121,7 +121,9 @@ "setinputmode", "useanimatedkeyboard", "Hoverable", - "zxcvbnmasdfghjklqwertyuiop" + "zxcvbnmasdfghjklqwertyuiop", + "autoresizing", + "focusable" ], "ignorePaths": [ "node_modules", diff --git a/example/src/screens/Examples/OverKeyboardView/index.tsx b/example/src/screens/Examples/OverKeyboardView/index.tsx index 98f9bc5e92..fef56992f9 100644 --- a/example/src/screens/Examples/OverKeyboardView/index.tsx +++ b/example/src/screens/Examples/OverKeyboardView/index.tsx @@ -1,4 +1,4 @@ -import { BlurView } from "@react-native-community/blur"; +// import { BlurView } from "@react-native-community/blur"; import React, { useState } from "react"; import { Button, @@ -7,7 +7,10 @@ import { TouchableWithoutFeedback, View, } from "react-native"; -import { GestureHandlerRootView, TouchableOpacity } from "react-native-gesture-handler"; +import { + GestureHandlerRootView, + TouchableOpacity, +} from "react-native-gesture-handler"; import { OverKeyboardView } from "react-native-keyboard-controller"; export default function OverKeyboardViewExample() {