沿反应原生的宽度拉伸一条线

时间:2016-08-04 11:47:17

标签: react-native flexbox

我正在我的应用中显示一个模态,我想在消息和关闭按钮之间显示一条线。我想知道如何在View的宽度上拉伸一条线。下面是rnplay上显示问题的示例组件。它显示了我已明确将width设置为100的行。我想知道是否有办法使用一些flex-box属性自动完成。

table

谢谢!

1 个答案:

答案 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'}}/>