我正在我的应用中显示一个模态,我想在消息和关闭按钮之间显示一条线。我想知道如何在View
的宽度上拉伸一条线。下面是rnplay上显示问题的示例组件。它显示了我已明确将width
设置为100
的行。我想知道是否有办法使用一些flex-box属性自动完成。
谢谢!
答案 0 :(得分:2)
替换
protected void Page_Load(object sender, EventArgs e)
{
if(!Page.IsPostBack)
{
foreach (ListItem item in RadioButtonListGutscheinArt.Items)
{
item.Text = item.Text.Replace(" ", " ");
}
}
}
与
<View style={{flex: 1, height: 3, alignItems: 'stretch', width: 100, backgroundColor: '#dddddd'}}/>