美文网首页
Flutter RenderFlex overflowed by

Flutter RenderFlex overflowed by

作者: Volcaner | 来源:发表于2020-10-13 10:13 被阅读0次

    Flutter RenderFlex overflowed by 15 pixels on the right inside Column Widget

    Ask Question

    https://stackoverflow.com/questions/52833704/flutter-renderflex-overflowed-by-15-pixels-on-the-right-inside-column-widget

    image.png
    new Row(
              mainAxisAlignment: MainAxisAlignment.start,
              children: <Widget>[
                new Checkbox(
                  onChanged: (bool){},
                ),
                Flexible(
                  child: new Text(
                    "This text can be so loooooooooooooong",
                  ),
                ),
    
              ],
            ),
    

    相关文章

      网友评论

          本文标题:Flutter RenderFlex overflowed by

          本文链接:https://www.haomeiwen.com/subject/hhzmpktx.html