반응형
질문
저는 VerticalDivider
위젯을 사용하여 Row
에서 항목을 분리하려고 합니다. 여기에서 전체 본문을 확인할 수 있습니다.
Row:
Row(
children: <Widget>[
Text('420 게시물', style: TextStyle(color: Color(0xff666666)),),
VerticalDivider(
thickness: 2,
width: 20,
color: Colors.black,
),
Text('420 게시물', style: TextStyle(color: Color(0xff666666)),)
],
),
답변
당신의 Row
를 IntrinsicHeight
로 감싸세요,
IntrinsicHeight(
child: Row(
children: <Widget>[
Text('420 게시물', style: TextStyle(color: Color(0xff666666)),),
VerticalDivider(
thickness: 2,
width: 20,
color: Colors.black,
),
Text('420 게시물', style: TextStyle(color: Color(0xff666666)),)
],
),
)
반응형
댓글