-
-
Save egorikftp/283697750e5d04d5f716a96e53146da0 to your computer and use it in GitHub Desktop.
This file contains 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
@Composable | |
@ExperimentalMaterialApi | |
fun DebugScreen( | |
scaffoldState: BottomSheetScaffoldState | |
) { | |
Column( | |
modifier = Modifier.fillMaxWidth(), | |
verticalArrangement = Arrangement.Top, | |
horizontalAlignment = Alignment.CenterHorizontally | |
) { | |
val targetValue = scaffoldState.bottomSheetState.targetValue | |
val currentValue = scaffoldState.bottomSheetState.currentValue | |
Text("target = $targetValue") | |
Text("current = $currentValue") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment