我正在使用@ shoutem / ui和react-native exponent框架创建一个react本机应用程序。我想做一些简单的事情:如果未选中,则将styleName'muted'添加到切换按钮。在这种情况下,登录和注册有两个按钮,一个是静音的,这取决于我们是否尝试其中一个。
我遇到语法问题,尝试在jsx中执行内联条件。我见过的一些例子动态地添加了类对象,但由于我使用的是shoutem / ui,我不确定className是一个对象,而是一个字符串。我正在考虑只是做一个内联条件来查看是否附加styleName字符串,但它似乎不正确。
import React, { Component } from 'react';
import {
Image,
Title,
Text,
View,
Button,
TextInput,
Screen,
} from '@shoutem/ui';
export default class LoginScreen extends Component {
constructor(props) {
super(props);
this.state = {
isRegistering: false,
}
}
toggleRegister(registering) {
this.setState({isRegistering:registering});
}
render() {
return (
<Screen styleName="vertical collapsed paper">
<View styleName="md-gutter">
<View styleName="horizontal">
<Button styleName="full-width {this.state.isRegistering ? 'muted' || ''}" onPress={()=>this.toggleRegister(false)}>
<Text>LOGIN</Text>
</Button>
<Button styleName="full-width {this.state.isRegistering ? '' || 'muted'}" onPress={()=>this.toggleRegister(true)}>
<Text>Register</Text>
</Button>
</View>
<TextInput
placeholder="Username or Email"
/>
<TextInput
placeholder="Password"
secureTextEntry
/>
<Button styleName="dark">
<Text>Submit</Text>
</Button>
</View>
</Screen>
);
}
}
答案 0 :(得分:1)
我个人并不熟悉ShoutemUI,但从introduction我觉得styleName
只是className
的另一个名称(这是一个字符串,而不是一个字符串)对象,不要与style
混淆。
无论如何,您可以在表达式中组合多个样式,如下所示:
<Button styleName={'full-width' + (this.state.isRegistering ? ' muted' : '')} />
我还建议查看classnames util。