We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78150c4 commit 93f2a55Copy full SHA for 93f2a55
1 file changed
src/useKeyboard.ts
@@ -1,7 +1,12 @@
1
import {useEffect, useState} from 'react'
2
import {Keyboard, KeyboardEventListener, ScreenRect} from 'react-native'
3
4
-const emptyCoordinates = Object.freeze({ screenX: 0, screenY: 0, width: 0, height: 0})
+const emptyCoordinates = Object.freeze({
5
+ screenX: 0,
6
+ screenY: 0,
7
+ width: 0,
8
+ height: 0,
9
+})
10
const initialValue = {
11
start: emptyCoordinates,
12
end: emptyCoordinates,
0 commit comments