ColScreen.onlyDesktop constructor

ColScreen.onlyDesktop(
  1. Col size
)

Will set width BsCol in tablet screen including

  • BreakPoint.sm (>= 567 px)
  • BreakPoint.md (>= 768 px)
  • BreakPoint.lg (>= 960 px)
  • BreakPoint.xl (>= 1140 px)

Implementation

factory ColScreen.onlyDesktop(Col size) {
  return ColScreen(lg: size);
}