ColScreen.onlyMobile constructor

ColScreen.onlyMobile(
  1. Col size
)

Will set width BsCol in mobile screen including

  • BreakPoint.sm (>= 567 px)
  • BreakPoint.md (>= 768 px)

Implementation

factory ColScreen.onlyMobile(Col size) {
  return ColScreen(sm: size, md: Col.col_12);
}