我正在使用 @shoutem/ui 和 react-native exponent 框架创建一个反应原生应用程序。我想做一些简单的事情:如果未选中,则将 styleName 'muted' 添加到切换按钮。在这种情况下,有两个按钮 Login 和 Register 并且一个被静音,这取决于我们是否尝试使用其中一个。
我在语法上有问题,尝试在 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>
);
}
}