React Native fontWeight:'bold',仅在Android中显示TextInput

时间:2017-10-18 17:13:04

标签: react-native

我有TextInput这种风格:

  title: {
    fontSize: TITLE_SECONDARY,
    fontWeight: 'bold',
    color: COLOR_DARK_PRIMARY,
  },

但是,该文字在Android上似乎只是'bold',但仍然是iOS中的常规字体,如下所示(“公司名称”部分):

enter image description here

我还使用了元素检查器进行调试,实际上TextInput在iOS中具有fontSize: TITLE_SECONDARY,属性。

TextInput的代码如下:

    <TextInput
      style={[styles.title, styles.extraMargin]}
      value={this.state.company}
      underlineColorAndroid = 'transparent'
      onChangeText={(company) => this.setState({company})}
      placeholder="Company Name"
    /> 

0 个答案:

没有答案