【问题标题】:How can I put date alwaays right bottom in chat screen?如何将日期始终放在聊天屏幕的右下方?
【发布时间】:2021-04-06 10:11:57
【问题描述】:

我怎样才能像图片中一样将日期时间始终放在右下角?

正如您在 whatsapp 中看到的,即使消息是单行或多行,消息的日期也始终位于右下角。

我需要什么样的设置或者我可以通过样式来实现这个结果?

【问题讨论】:

    标签: react-native whatsapp


    【解决方案1】:

    这里有两个解决方案,把这些样式放到你的根视图中

    The first Solution

    <View style={{flexDirection: 'row'}}>
        <Text>Your message</Text>
        <Text style={{position: 'absolute', right: 0}}>Your Date</Text>
    </View
    

    Second Solution

    <View style={{flexDirection: 'row', justifyContent: 'space-between' }}>
        <Text>Your message</Text>
        <Text>Your Date</Text>
    <?View>
    

    【讨论】:

    • 这不是一个正确的解决方案。不过谢谢你我试过了
    猜你喜欢
    • 2020-07-28
    • 1970-01-01
    • 1970-01-01
    • 2023-02-14
    • 2011-05-13
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多