This site requires javascript.
Android Code Search
file:androidx/compose/ui/unit/TextUnit.kt symbol:em
search
close
info_outline
more_vert
Result 1 of 1
content_copy
Search Result Root
androidx/platform/frameworks/support
keyboard_arrow_right
Branch
Branch
androidx-main
keyboard_arrow_right
Search Result Path
compose/ui/ui-unit/src/commonMain/kotlin/androidx/compose/ui/unit/
TextUnit.kt
content_copy
Preview
42:
43:
44:
private
const
val
UNIT_TYPE_SP =
0x01L
shl
32
// 0x01_0000_0000
private
const
val
UNIT_TYPE_
EM
=
0x02L
shl
32
// 0x02_0000_0000
59:
60:
61:
val
Sp = TextUnitType(UNIT_TYPE_SP)
val
Em
= TextUnitType(UNIT_TYPE_EM)
}
230:
231:
232:
/** True if this is a EM unit type. */
val
is
Em
get
() = rawType == UNIT_TYPE_EM
266:
267:
268:
@Stable
val
Float.
em
: TextUnit
get
() = pack(UNIT_TYPE_EM, this)
276:
277:
278:
@Stable
val
Double.
em
: TextUnit
get
() = pack(UNIT_TYPE_EM, this.toFloat())
286:
287:
288:
@Stable
val
Int.
em
: TextUnit
get
() = pack(UNIT_TYPE_EM, this.toFloat())
chevron_left
1
chevron_right
Results per page
10
We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience.
Got it
Help
Open branch androidx-main