9

好的,让我们把这个简单化。我有两个Text组件,一个在另一个内部。第一个TextfontSizeof 60,嵌套的有fontSizeof 20。随着字体大小的变化,嵌套的Text位置基本对齐。我希望嵌套的Text 垂直中心与父级对齐。

代码

// @flow
import React, { Component } from 'react';
import { Text } from 'react-native';

type PropTypes = {}
export default class SampleVC extends Component<PropTypes> {
    render() {
        return (
            <Text style={{ fontSize: 60 }}>
                Big Text
                <Text style={{ fontSize: 20 }}>Small Text</Text>
            </Text>
        );
    }
}

电流输出

当前输出

需要的输出

在此处输入图像描述

我知道这是一个简单的场景,但是作为反应原生的新手,我想不通。我已经搜索了整个网络,但找不到任何有用的资源。

4

7 回答 7

11

仅使用嵌套文本是不可能实现您正在尝试的。

唯一选项,使用视图来包装您的文本,例如,

<View style={{ flexDirection: 'row', alignItems: 'center' }} >
  <Text style={{ fontSize: 60 }}>Big Text</Text>
  <Text style={{ fontSize: 20 }}>Small Text</Text>
</View>

如果您想经常使用它,请为上述内容创建自己的自定义组件,

function CustomNextedText (props) {
  return (
    <View style={{ flexDirection: 'row', alignItems: 'center' }} >
      <Text style={{ fontSize: 60 }}>{props.bigText}</Text>
      <Text style={{ fontSize: 20 }}>{props.smallText}</Text>
    </View>
  );
}

像任何其他 react-native 组件一样在任何地方使用它,

 <CustomNextedText bigText='Big Text' smallText='Small Text'/>

希望能帮助到你。

于 2018-05-22T13:35:40.167 回答
4

您可以将嵌套文本包装在视图中,但嵌套视图必须具有宽度和高度。如果您对此约束没有任何问题,这是一个很好的解决方案。

<Text style={{ fontSize: 60 }}>
      Big Text
      <View style={{ height:40, width:100, justifyContent: 'center', alignItems: 'center' }}>
            <Text style={{ fontSize: 20 }}>Small Text</Text>
      </View>
</Text>
于 2018-05-22T12:59:31.600 回答
1

您还可以定义 smallTextlineHeight以匹配 bigText:

render() {
    return (
        <Text style={{ fontSize: 60 }}>
            Big Text
            <Text style={{ fontSize: 20, lineHeight:60 }}>
                Small Text
            </Text>
        </Text>
    );
}
于 2018-09-12T07:26:03.597 回答
1

从 React-Native v0.63 开始,您可以<View/>在内部渲染<Text/>,而无需为视图提供明确的尺寸。发行说明

有了公认的答案,如果您的大文本足够长以跨越多行,那么小文本将垂直居中于整个大文本块,而不是特定行。

因此,这是使用新功能对@Ali S 的回答进行的更新。为了使嵌套文本垂直居中,仍然需要高度,因此将其设置为大文本的 fontSize。宽度可以省略,因此小文本的长度现在可以是动态的。

function BigSmallText(props) {
    let bigFontSize = 40;
    return (
        <Text
            style={{
                fontSize: bigFontSize,
                lineHeight: bigFontSize,
            }}>
            A very long sentence that spans multiple lines
            <View
                style={{
                    flexDirection: 'row',
                    alignItems: 'center',
                    height: bigFontSize,
                }}>
                <Text
                    style={{
                        fontSize: 14,
                        paddingLeft: 10,
                    }}>
                    SMALL TEXT
                </Text>
                <Text
                    style={{
                        fontSize: 6,
                        paddingLeft: 10,
                    }}>
                    TINY TEXT
                </Text>
            </View>
        </Text>
    );
}
于 2020-07-22T00:48:37.427 回答
0

您可以将两个Text添加到View中。

<View style={{alignItems: 'center', justifyContent: 'center'}}>
       <Text style={{ fontSize: 60, height:'100%' }}>Big Text</Text>                
       <Text style={{ fontSize: 20, height:'100%' }}>Small Text</Text>
</View>
于 2018-05-22T12:36:23.287 回答
0
< View style={{flexDirection:'column'}}>


    <View style={{alignContent:'center'}}>

        <Text style={{fontSize:60}}>{props.bigText}</Text>

    </View>

    <View style={{alignContent:'center'}} >

        <Text style={{fontSize:20}}>{props.smallText}</Text>

     </View>

< /View>
于 2018-05-22T13:49:46.133 回答
0

这看起来很奇怪,但是这似乎对我有用(使用@Ali SabziNezhad 的建议)。它允许共享文本道具(如color)和对齐(center在这种特殊情况下)

function Component() {
    return (
        <CenterText style={{color: 'red'}}>
            Centered <Text style={{fontSize: 50}}>text</Text>
        </CenterText>
    );
}
export function CenterText({children, ...otherProps}: Text['props']) {
    return (
        <Text {...otherProps}>
            <View 
                style={{flexDirection: 'row', alignItems: 'center'}} 
                children={children} 
            />
        </Text>
    );
}

我们可以有一个更通用的对齐文本组件:

export function AlignedText({children, alignItems, ...otherProps}: AlignedTextProps) {
    return (
        <Text {...otherProps}>
            <View 
                style={{flexDirection: 'row', alignItems: alignItems}} 
                children={children} 
            />
        </Text>
    );
}

type Alignment = 'baseline' | 'center' | 'flex-end' | 'flex-start' | 'stretch';
type AlignedTextProps = Text['props'] & {alignItems: Alignment};

然后我们可以用它来定义CenterText

export function CenterText(props: TextProps) {
    return <AlignedText alignItems='center' {...props} />;
}

或直接为:

function Component() {
    return (
        <AlignedText style={{color: 'red'}} alignItems='center'>
            Centered <Text style={{fontSize: 50}}>text</Text>
        </AlignedText>
    );
}
于 2021-04-30T09:15:37.017 回答