在 flexbox 布局中,我希望左侧有一个图像,右侧有一个中心标签标题:
<FlexboxLayout backgroundColor="#bada55" justifyContent="space-between" height="300" class="head">
<Image :src="posts.image_url" stretch="aspectFit" class="head_img"/>
<Label :text="posts.product_name" alignSelf="center" alignContent="center" class="title" textWrap="true"/>
</FlexboxLayout>
在我的情况下,标签文本向右但不是中心,关于如何做到这一点的任何想法?