本机基础动态显示成功或错误输入
Native base dynamically show success or Error input
我想要两个简单的输入框。
有一个登录名输入框,一个密码输入框。
目前我将这两个输入框的值映射成一个"state"。
现在,使用 NativeBase。我如何动态显示 "success" "error" 就像他们在演示中所做的那样?
http://nativebase.io/docs/v0.5.9/components#successInputTextbox
传一个道具success
等同于传success={true}
所以如果你有像 inputSuccess 和 inputError 这样的状态变量,你可以这样做:
<InputGroup
iconRight
success={this.state.inputSuccess ? true : false}
error={this.state.inputError ? true : false}>
<Icon name='ios-checkmark-circle' style={{color:'#00C497'}}/>
<Input placeholder='Textbox'/>
</InputGroup>
Native Base 文档(2.12 版)有this example:
state = { error: 'Some error' };
// ...
<Content>
<Item error={this.state.error !== ''}>
<Input
placeholder='Textbox with Error Input'
error={'#d50000'}
/>
<Icon name='close-circle' />
</Item>
</Content>
<Input />
里面的error属性是用来设置错误颜色的。在项目错误属性中设置了无效状态。
Base don Himanshu 回答。
不需要设置false,那是成功和错误的默认值。
此外,您还可以使用条件来更改图标!
<InputGroup
iconRight
success={this.state.inputSuccess}
error={this.state.inputError}>
<Icon name={this.state.inputSuccess ? 'checkmark-circle' : 'close-circle'}/>
<Input placeholder='Textbox'/>
</InputGroup>
我想要两个简单的输入框。
有一个登录名输入框,一个密码输入框。
目前我将这两个输入框的值映射成一个"state"。
现在,使用 NativeBase。我如何动态显示 "success" "error" 就像他们在演示中所做的那样? http://nativebase.io/docs/v0.5.9/components#successInputTextbox
传一个道具success
等同于传success={true}
所以如果你有像 inputSuccess 和 inputError 这样的状态变量,你可以这样做:
<InputGroup
iconRight
success={this.state.inputSuccess ? true : false}
error={this.state.inputError ? true : false}>
<Icon name='ios-checkmark-circle' style={{color:'#00C497'}}/>
<Input placeholder='Textbox'/>
</InputGroup>
Native Base 文档(2.12 版)有this example:
state = { error: 'Some error' };
// ...
<Content>
<Item error={this.state.error !== ''}>
<Input
placeholder='Textbox with Error Input'
error={'#d50000'}
/>
<Icon name='close-circle' />
</Item>
</Content>
<Input />
里面的error属性是用来设置错误颜色的。在项目错误属性中设置了无效状态。
Base don Himanshu 回答。 不需要设置false,那是成功和错误的默认值。 此外,您还可以使用条件来更改图标!
<InputGroup
iconRight
success={this.state.inputSuccess}
error={this.state.inputError}>
<Icon name={this.state.inputSuccess ? 'checkmark-circle' : 'close-circle'}/>
<Input placeholder='Textbox'/>
</InputGroup>