Created
September 27, 2024 09:01
-
-
Save neelratanguria/a34cc24b98f77a71c9eb024ce7fe42fb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val screenWidth = LocalConfiguration.current.screenWidthDp.dp.value | |
val naTextSp = when { | |
screenWidth < 390 -> 44.sp | |
else -> 48.sp | |
} | |
val uACRValTextSp = when { | |
screenWidth < 390 -> 20.sp | |
else -> 22.sp | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment