allDeviceScreen static method

Widget allDeviceScreen(
  1. BuildContext context, {
  2. Color? color,
})

Implementation

static Widget allDeviceScreen ( BuildContext context, {Color? color }) {
  color ??= Colors.transparent;
  return colored( DeviceTools.getWidth(context), DeviceTools.getHeight(context), color );
}