1

我目前有一个简单的图例组件,它产生如下输出:

在此处输入图像描述

问题是我手动将height蓝色矩形设置为与文本一样高。有什么方法可以告诉 View 只是根据文本的高度自然扩展,而不必手动将某个数字设置为height

您可以试用Snack或查看代码:

import * as React from 'react';
import { Text, View, StyleSheet } from 'react-native';

class App extends React.Component {
  render() {
    return (
      <View style={styles.container}>
        <View style={styles.legend}>
          <View style={styles.item}>
            <View style={styles.shape} />
            <View>
              <Text>Food</Text>
              <Text>25%</Text>
            </View>            
          </View>
           <View style={styles.item}>
            <View style={styles.shape} />
            <View>
              <Text>Utilities</Text>
              <Text>35%</Text>
            </View>            
          </View>
           <View style={styles.item}>
            <View style={styles.shape} />
            <View>
              <Text>Misc.</Text>
              <Text>40%</Text>
            </View>            
          </View>
        </View>
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
    backgroundColor: 'white',
    marginHorizontal: 50,
  },
  legend: {
    width: '100%',
    flexDirection: 'row',
    justifyContent: 'space-between'
  },
  item: {
    flexDirection: 'row',
    alignItems: 'center'
  },
  shape: {
    backgroundColor: 'blue',
    width: 15,
    height: 30, // I DONT WANT TO HAVE TO DO THIS
    marginRight: 5
  }
});

export default App;

任何帮助将不胜感激,谢谢!

4

3 回答 3

1

您可以在形状样式上使用 height: '100%' ,并且所有形状都将具有文本的最大高度

这是一个很长的文字

于 2019-01-02T19:19:25.800 回答
0

一个完整的例子来实现这一点。

<View style={{flexDirection:'row'}}>
    <View style={{flex:1, flexDirection:'row', alignItems:'center'}}>
        <View style={{width: 10, backgroundColor:'blue', height:'100%'}} />
            <View>
                <Text>Food</Text>
                <Text>25%</Text>
                <Text>25%</Text>
                <Text>25%</Text>
            </View>     
        </View>
        <View style={{flex:1, flexDirection:'row', alignItems:'center'}}>
            <View style={{width: 10, backgroundColor:'blue', height:'100%'}} />
            <View>
                <Text>Utilities</Text>
                <Text>35%</Text>
            </View>     
        </View>
        <View style={{flex:1, flexDirection:'row', alignItems:'center'}}>
            <View style={{width: 10, backgroundColor:'blue', height:'100%'}} />
            <View>
                <Text>Misc.</Text>
                <Text>40%</Text>
        </View>     
    </View>
</View>
于 2020-05-22T13:38:25.460 回答
0

如果我理解正确,首先你应该用一个视图包裹你的每个项目,然后你应该用 flexGrow 添加第二个视图。

<View>
    <View style={{flexGrow: 1}}/>
    <View style={styles.item}>

第一个视图可帮助您将 flexDirection 更改为列,而具有 flexGrow 的第二个视图可帮助您向下推蓝色形状。您应该将形状高度设置为 100%。

shape: {
    backgroundColor: 'blue',
    width: 15,
    height: "100%", //here
    marginRight: 5,
}

我还编辑了你的零食代码并保存了它。链接:https ://snack.expo.io/HkZ3a5q-V

于 2019-01-02T20:38:22.670 回答