react-native-varia 0.4.2 → 0.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -240,9 +240,7 @@ const DrawerSliderInternal = ({
240
240
 
241
241
  useEffect(() => {
242
242
  const showSub = Keyboard.addListener('keyboardDidShow', e => {
243
- if (e.endCoordinates.height < 50) return // ignoramos eventos “prematuros”
244
-
245
- console.log(e.endCoordinates.height)
243
+ if (e.endCoordinates.height < 50) return
246
244
  setKeyboardHeight(e.endCoordinates.height)
247
245
  })
248
246
  const hideSub = Keyboard.addListener('keyboardDidHide', () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-varia",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "bin": {
5
5
  "varia": "bin/cli.js"
6
6
  },