Skip to content

Instantly share code, notes, and snippets.

@KatieBarnett
Last active December 12, 2022 10:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KatieBarnett/fd791c238c2f4789b497fb9ff70f5095 to your computer and use it in GitHub Desktop.
Save KatieBarnett/fd791c238c2f4789b497fb9ff70f5095 to your computer and use it in GitHub Desktop.
Setting text size for top app bar
...
val scrollBehavior = TopAppBarDefaults.enterAlwaysScrollBehavior(rememberTopAppBarState())
val collapsed = 22
val expanded = 28
val topAppBarTextSize = (collapsed + (expanded - collapsed)*(1-scrollBehavior.state.collapsedFraction)).sp
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment