displayBetween

fun Modifier.displayBetween(breakpointLower: Breakpoint, breakpointUpper: Breakpoint): Modifier(source)

Display this element only if the current screen's width lies between the lower breakpoint (inclusive) and upper breakpoint (exclusive).

This is essentially a convenience function equivalent to calling both displayIfAtLeast and displayUntil at the same time.