Text
サブセットまたはText
コンポーネントサブビューのいずれかを含むカスタマイズされた親View
を書きたいと思います。 Text
ビューの高さに基づいて、親をView
の高さに設定する方法はありますか?サブビューの高さに基づいて親ビューの高さを設定する方法
class ParentView extends Component {
constructor(props) {
super(props);
}
render() {
const {
titleText,
bodyText,
} = this.props;
//if titleText is passed to props, measure it's height;
//if bodyText is passed to props, measure it's height;
// set contentContainer height = titleText + bodyText + someMargin
return (
<View style={styles.contentContainer}>
{titleText && <Text style={styles.title}>
{titleText}
</Text>}
{bodyText && <Text style={styles.body}>
{bodyText}
</Text>}
</View>
);
}
}
なぜ親の高さを設定する必要があるのですか?親が高さ、最小/最大、およびフレックススタイルを単純に省略して、親が子をラップするようにすることができます。 – vovkasm
あなたは答えを試しましたか? – Akis