FlutstrapVisibility.mdOnly constructor
Shows the child only on medium screens (tablets) Hides on all other screen sizes
Implementation
factory FlutstrapVisibility.mdOnly({
required Widget child,
Widget? fallback,
}) {
return FlutstrapVisibility(
child: child,
showOnXs: false,
showOnSm: false,
showOnMd: true,
showOnLg: false,
showOnXl: false,
showOnXxl: false,
fallback: fallback,
);
}