O
Size: a a a
O
NK
NK
O
lf
O
NK
NK
O
NK
O
NK
NK
КА
КА
Widget _timePicker(BuildContext context) {
return Container(
height: 200,
width: MediaQuery.of(context).size.width,
child: Row(
children: [
Container(
margin: EdgeInsets.only(top: 43),
height: 200,
width: MediaQuery.of(context).size.width / 2,
child: ListWheelScrollView(
diameterRatio: 1.5,
offAxisFraction: -.7,
children: List<Widget>.generate(
25,
(int index) => Text(
'$index:00',
style: TextStyle(
fontSize: 23,
fontFamily: 'GothamPro',
color: Color(0xFF232326)),
)), // [0, 1, 4],
itemExtent: 30,
overAndUnderCenterOpacity: 0.2,
useMagnifier: true,
),
)
],
),
);
}
КА
ДЩ
Y
КА