Skip to content

Commit 63462c6

Browse files
committed
fix wrong place of background color
1 parent 69afef0 commit 63462c6

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

example/main.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ const styles = StyleSheet.create({
110110
bottom: 0,
111111
},
112112
progressiveInput: {
113-
backgroundColor: 'white',
114113
marginTop: 20,
115114
marginLeft: 10,
116115
marginRight: 10,

example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"expo": "16.0.0",
1010
"react": "16.0.0-alpha.6",
1111
"react-native": "https://github.com/expo/react-native/archive/sdk-16.0.0.tar.gz",
12-
"react-native-progressive-input": "^1.0.1",
12+
"react-native-progressive-input": "^1.0.2",
1313
"react-native-vector-icons": "^4.1.0"
1414
}
1515
}

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const styles = StyleSheet.create({
88
alignItems: 'center',
99
borderWidth: 1,
1010
borderColor: 'lightgrey',
11+
backgroundColor: 'white',
1112
},
1213
clearIcon: {
1314
marginLeft: 5,
@@ -16,7 +17,6 @@ const styles = StyleSheet.create({
1617
flex: 1,
1718
height: 40,
1819
marginLeft: 10,
19-
backgroundColor: 'white',
2020
},
2121
activityIndicator: {
2222
marginLeft: 5,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-progressive-input",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "Use this to create autocomplete text input which the text box can have both clear button and an activity indicator to show the background job",
55
"main": "index.js",
66
"repository": "https://github.com/khaiql/react-native-progressive-input",

0 commit comments

Comments
 (0)