plain property
Widget
get
plain
Implementation
Widget get plain {
return ColoredBox(
color: Theme.of(context).colorScheme.primary,
child: SizedBox(
height: height,
width: double.infinity,
),
);
}