Skip to content

Instantly share code, notes, and snippets.

@MrNtlu
Created December 8, 2022 18:10
Show Gist options
  • Save MrNtlu/793b81d7849ab2ae5dc468f041e4739c to your computer and use it in GitHub Desktop.
Save MrNtlu/793b81d7849ab2ae5dc468f041e4739c to your computer and use it in GitHub Desktop.
Scaffold(
topBar = {
if (searchWidgetState == SearchWidgetState.OPENED) {
SearchAppBar()
} else {
TopAppBar(
//...
actions = {
IconButton(onClick = { searchWidgetState = SearchWidgetState.OPENED }) {
Icon(
imageVector = Icons.Rounded.Search,
contentDescription = "",
tint = Color.White,
)
}
},
)
}
},
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment