I have fortune wheel in circle and its getting full screen I want to show wheel only half and put buttons like check image for better understand
here is code
body: Container(
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Expanded(
flex: 1,
child: FortuneWheel(
duration: Duration(seconds: 3),
animateFirst: false,
selected: selected.stream,
items: [
FortuneItem(
child: Text('0'),
style: FortuneItemStyle(
color: Colors.green,
textStyle: TextStyle(
fontWeight: FontWeight.bold, fontSize: 15))),
FortuneItem(
child: Text('32'),
style: FortuneItemStyle(
color: Colors.grey,
)),
FortuneItem(child: Text('15')),
FortuneItem(child: Text('19')),
FortuneItem(child: Text('4')),
FortuneItem(child: Text('21')),
FortuneItem(child: Text('2')),
],
),
),
],
),
),


