react-native-boxes 1.4.6 → 1.4.7
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.
- package/package.json +1 -1
- package/src/Input.tsx +1 -1
package/package.json
CHANGED
package/src/Input.tsx
CHANGED
|
@@ -148,7 +148,7 @@ export function CompositeTextInputView(props: TextInputProps & {
|
|
|
148
148
|
}} name={props.leftIcon} />
|
|
149
149
|
) : props.leftIcon
|
|
150
150
|
|
|
151
|
-
const TextComponent = props.readOnly ? TextView :
|
|
151
|
+
const TextComponent = props.readOnly ? TextView : TextInput
|
|
152
152
|
return (
|
|
153
153
|
<HBox style={[{
|
|
154
154
|
paddingEnd: theme.dimens.space.md,
|