对本机基本标题

时间:2017-05-13 20:57:57

标签: javascript css reactjs react-native

我似乎无法将我的标题文字包起来:

enter image description here

I'm using native-base

let SearchPage = (props) => {
  const menu = (
    <Container>
      <Header style={styles.header}>
        <Left>
          <Button transparent onPress={props.togglePageMenu}>
            <Icon name='menu' />
          </Button>
        </Left>
        <Body>
          <Title style={styles.title} numberOfLines={2}>Search Products</Title>
        </Body>
        <Right>
        </Right>
      </Header>...

...样式:

      title: {
        flexWrap:'wrap',
        flex: 1,
        color: '#9E9E9E',
        fontWeight: '200',
        fontSize: 19
      },
  header: {
    backgroundColor: '#F7F7F7'
  },

我做错了什么?

1 个答案:

答案 0 :(得分:1)

我不得不停止使用Native Base中的<Title>,而是使用Native Base中的<Text>。我猜Title有一些幕后风格阻止它包装。