position function
Implementation
Widget position(
Widget widget, double? left, double? right, double? top, double? bottom) {
return Positioned(
left: left,
right: right,
top: top,
bottom: bottom,
child: widget,
);
}
Widget position(
Widget widget, double? left, double? right, double? top, double? bottom) {
return Positioned(
left: left,
right: right,
top: top,
bottom: bottom,
child: widget,
);
}