我正在尝试使用react-native创建消息视图,例如:

如你看到的:
我正在尝试使用本机重新创建这个,但是我只能实现(2)并且不确定如何实现两者的效果......这就是我到目前为止所拥有的:

<View style={{flex:1,backgroundColor:'blue',flexDirection:'row'}}>
<View style={{backgroundColor:'orange'}}>
<View style={{width:90,flex:1}}>
<Text>123</Text>
</View>
</View>
<View style={{flex:0.25,backgroundColor:'red'}}>
<Text>123</Text>
</View>
</View>
Run Code Online (Sandbox Code Playgroud)
如果我增加橙色视图来代表一个大泡泡,那么它就会离开屏幕...例如:
