Flutter divider widget not appearing

前端 未结 5 526
夕颜
夕颜 2021-02-04 01:37

I\'m currently learning how to build apps using the Flutter SDK and Android Studio. My problem is that I need to add a Divider widget between the \'Administrative\' text and the

5条回答
  •  暖寄归人
    2021-02-04 02:21

    I had the same issue, but by putting my Divider inside an Expanded Widget fixed my problem.

    Row(
      mainAxisAlignment: MainAxisAlignment.center,
      children: [
        Expanded(
          child: Divider(
            thickness: 1,
            color: Color(0xff818181),
          ),
        ),
        SizedBox(width: 10),
        Text(
          'Login using Social Media',
          style: TextStyle(color: Color(0xff818181), fontWeight: FontWeight.w500),
        ),
        SizedBox(width: 10),
        Expanded(
          child: Divider(
            thickness: 1,
            color: Color(0xff818181),
          ),
        ),
      ],
    ),
    

提交回复
热议问题