I am writing a custom Component for the inputs in my application and I am trying to implement some kind of error feedback on them.
The first problem comes when adding the icon, that's not beign aligned to the right, it always appears to the left inside the input.
"react": "16.0.0-alpha.12",
"react-native": "^0.47.0"
"native-base": "^2.3.1"
The icon should appear to the right
The icon appears in the left
import React from "react";
import PropTypes from "prop-types";
import { Item, Label, Input, Text, Icon } from "native-base";
export default class FloatingInput extends React.Component {
render(){
return (
<Item stackedLabel error={this.props.error?true:false}>
<Label>{this.props.label}</Label>
<Input
secureTextEntry={this.props.obscure?true:false}
value={this.props.value}
onChangeText={this.props.onChangeText}
onBlur={this.props.validate}/>
<Icon name='close-circle' />
<Text>{this.props.error}</Text>
</Item>
);
}
static propTypes = {
value: PropTypes.any.isRequired,
label: PropTypes.string.isRequired,
error: PropTypes.string,
obscure: PropTypes.bool,
onChangeText: PropTypes.func,
validate: PropTypes.func
};
}

I have just tested this in Android
I meet the same problem. Property stackedLabel and error, can not be used in Item together.
import React, { Component } from 'react';
import { Container, Header, Content, Item, Input, Icon, Label } from 'native-base';
export default class IconTextboxExample extends Component {
render() {
return (
<Container>
<Header />
<Content>
<Item stackedLabel error>
<Label>Username</Label>
<Input />
<Icon name='close-circle' />
</Item>
</Content>
</Container>
);
}
}
+1
+1
+1
Closing this issue due to inactivity
Please reopen this if the issue continues
@SupriyaKalghatgi in order to trigger the bug, you need to use Item stackedLabel (emphasis mine) and also put a Label inside the Item stackedLabel.
I also got hit with this bug just today.
I tried putting alignSelf=flex-end on the Icon, still doesn't work.
Icon doesn't work inside StackeLabel. -_- I'm using v2.5.1
Same here. It does not work to display an error icon using StackeLabel.
@SupriyaKalghatgi This is not a duplicate of #1102 - as the others said, this error is specific to using Item with stackedLabel. This is still happening. Can this please reopened?
I still have this issue in v2.8.1. Can someone please help?
still buggy
Still buggy ...
Can someone re-open this issue ?
Still buggy in [email protected]
still bug in native-base
Also facing this issue, is there any workaround ? tried putting style={{ flexDirection: 'row-reverse' }} in Item but it made thing worse.
Still buggy in [email protected] !
Still a bug in native-base 2.13.8..
Can someone please reopen this issue?
FOR THE LOVE OF GOD SOMEONE REOPEN THIS ISSUE. I've been using Native Base for one day and so far have run into so many little bugs surrounding forms/inputs that it is quickly becoming unusable.
this is still an issue @SupriyaKalghatgi . Please reopen
I was able to achieve the same effect with the following nesting. Hope this helps others while the issue gets fixed.
<Item stackedLabel>
<Label label={label} />
<Row>
<Input value={value} />
<Button transparent>
<Icon name='trash' />
</Button>
</Row>
</Item>
Still a problem in 2.13.12
Guys, wrap it in a view then you can solve this
<Item success={false} stackedLabel>
<Label ></Label>
<View
style={[
inputStyle,
{ flexDirection: 'row', alignItems: 'center', justifyContent: 'space-between' }
]}
>
<Input />
<Icon name="checkmark-circle" />
</View>
</Item>
Most helpful comment
Guys, wrap it in a view then you can solve this