Skip to content

Commit

Permalink
chore: release 1.7.0 (#231)
Browse files Browse the repository at this point in the history
# Release

Version 1.7.0
  • Loading branch information
kirillzyusko committed Sep 8, 2023
1 parent bacba67 commit a4e6bde
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 13 deletions.
4 changes: 2 additions & 2 deletions FabricExample/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,7 @@ PODS:
- React-jsinspector (0.72.4)
- React-logger (0.72.4):
- glog
- react-native-keyboard-controller (1.6.1):
- react-native-keyboard-controller (1.7.0):
- RCT-Folly
- RCTRequired
- RCTTypeSafety
Expand Down Expand Up @@ -1421,7 +1421,7 @@ SPEC CHECKSUMS:
React-jsiexecutor: c7f826e40fa9cab5d37cab6130b1af237332b594
React-jsinspector: aaed4cf551c4a1c98092436518c2d267b13a673f
React-logger: da1ebe05ae06eb6db4b162202faeafac4b435e77
react-native-keyboard-controller: a50a432074242962664e6e5da44c33cdf2ebcf45
react-native-keyboard-controller: 16c1d5470a2eba80dd014607a8b03679d811adb5
react-native-safe-area-context: a283130af276caa22ecfed30c3d1eb450bc83439
React-NativeModulesApple: edb5ace14f73f4969df6e7b1f3e41bef0012740f
React-perflogger: 496a1a3dc6737f964107cb3ddae7f9e265ddda58
Expand Down
15 changes: 11 additions & 4 deletions FabricExample/src/screens/Examples/KeyboardAvoidingView/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React, { useState, useEffect } from 'react';
import {
Platform,
KeyboardAvoidingView as RNKeyboardAvoidingView,
Text,
TextInput,
Expand Down Expand Up @@ -36,16 +35,24 @@ export default function KeyboardAvoidingViewExample({ navigation }: Props) {

return (
<Container
behavior={Platform.OS === 'ios' ? 'padding' : 'height'}
behavior="padding"
contentContainerStyle={styles.container}
keyboardVerticalOffset={100}
style={styles.content}
>
<View style={styles.inner}>
<Text style={styles.heading}>Header</Text>
<View>
<TextInput placeholder="Username" style={styles.textInput} />
<TextInput placeholder="Password" style={styles.textInput} />
<TextInput
placeholder="Username"
placeholderTextColor="#7C7C7C"
style={styles.textInput}
/>
<TextInput
placeholder="Password"
placeholderTextColor="#7C7C7C"
style={styles.textInput}
/>
</View>
<TouchableOpacity style={styles.button}>
<Text style={styles.text}>Submit</Text>
Expand Down
4 changes: 2 additions & 2 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ PODS:
- React-jsinspector (0.72.4)
- React-logger (0.72.4):
- glog
- react-native-keyboard-controller (1.6.1):
- react-native-keyboard-controller (1.7.0):
- React-Core
- react-native-safe-area-context (4.7.1):
- React-Core
Expand Down Expand Up @@ -755,7 +755,7 @@ SPEC CHECKSUMS:
React-jsiexecutor: c7f826e40fa9cab5d37cab6130b1af237332b594
React-jsinspector: aaed4cf551c4a1c98092436518c2d267b13a673f
React-logger: da1ebe05ae06eb6db4b162202faeafac4b435e77
react-native-keyboard-controller: 04fed02b3ff24e18486c7fb52ab92267c15b27a9
react-native-keyboard-controller: 3a9328bd05ce52bb1c2680160b51b1a24dd50d59
react-native-safe-area-context: 9697629f7b2cda43cf52169bb7e0767d330648c2
React-NativeModulesApple: edb5ace14f73f4969df6e7b1f3e41bef0012740f
React-perflogger: 496a1a3dc6737f964107cb3ddae7f9e265ddda58
Expand Down
15 changes: 11 additions & 4 deletions example/src/screens/Examples/KeyboardAvoidingView/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React, { useState, useEffect } from 'react';
import {
Platform,
KeyboardAvoidingView as RNKeyboardAvoidingView,
Text,
TextInput,
Expand Down Expand Up @@ -36,16 +35,24 @@ export default function KeyboardAvoidingViewExample({ navigation }: Props) {

return (
<Container
behavior={Platform.OS === 'ios' ? 'padding' : 'height'}
behavior="padding"
contentContainerStyle={styles.container}
keyboardVerticalOffset={100}
style={styles.content}
>
<View style={styles.inner}>
<Text style={styles.heading}>Header</Text>
<View>
<TextInput placeholder="Username" style={styles.textInput} />
<TextInput placeholder="Password" style={styles.textInput} />
<TextInput
placeholder="Username"
placeholderTextColor="#7C7C7C"
style={styles.textInput}
/>
<TextInput
placeholder="Password"
placeholderTextColor="#7C7C7C"
style={styles.textInput}
/>
</View>
<TouchableOpacity style={styles.button}>
<Text style={styles.text}>Submit</Text>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-keyboard-controller",
"version": "1.6.1",
"version": "1.7.0",
"description": "Keyboard manager which works in identical way on both iOS and Android",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down

0 comments on commit a4e6bde

Please sign in to comment.