Slide 12
Slide 12 text
1.όʔδϣϯ൪߸ͷߦ
Widget _buildVersionNumberRow() {
return Container(
height: 70.0,
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
'όʔδϣϯ',
style: _LabelTextStyle,
),
Text(
'1.0.0',
style: _InformationTextStyle,
),
],
),
padding: EdgeInsets.symmetric(horizontal: 12.0),
decoration: BoxDecoration(
border: Border(
bottom: BorderSide(
width: 1.0,
color: _BorderColor,
),
),
),
);
}