如何切换样式名称并将其添加到反应组件



我正在使用 @shoutem/ui 和 react-native 指数框架创建一个 react 原生应用程序。 我想做一些简单的事情:如果未选择,则在切换按钮中添加一个样式名称"静音"。 在这种情况下,有两个按钮登录和注册,一个被静音,具体取决于我们是尝试一个还是另一个。

我在语法方面遇到问题,尝试在 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>

    );
  }
}

我个人并不熟悉 ShoutemUI,但从介绍中听起来styleName只是 className 的替代名称(它是一个字符串,而不是一个对象,不要与 style 混淆)。

无论如何,您可以在表达式中组合多种样式,如下所示:

<Button styleName={'full-width' + (this.state.isRegistering ? ' muted' : '')} />

我还建议查看类名实用程序。

相关内容

  • 没有找到相关文章

最新更新