drawButton function
Implementation
drawButton(double x, double y, Color v) {
return new Positioned(
left: x,
bottom: y,
child: new Icon(Icons.star),
);
}
drawButton(double x, double y, Color v) {
return new Positioned(
left: x,
bottom: y,
child: new Icon(Icons.star),
);
}