buildWrapper method
Implementation
@override
Widget? buildWrapper(BuildContext context, Widget child) {
return Center(
child: SizedBox(
width: size,
height: size,
child: child,
),
);
}
@override
Widget? buildWrapper(BuildContext context, Widget child) {
return Center(
child: SizedBox(
width: size,
height: size,
child: child,
),
);
}