脚手架
在 Material Design 中,脚手架是一个基本结构,它为复杂的用户界面提供了一个标准化的平台。它将 UI 的不同部分(例如应用栏和浮动操作按钮)组合在一起,使应用具有连贯的外观和感觉。
示例
Scaffold
可组合项提供了一个简单的 API,您可以使用它根据 Material Design 指南快速组装应用的结构。Scaffold
将多个可组合项作为参数接受。其中包括以下内容
topBar
:屏幕顶部的应用栏。bottomBar
:屏幕底部的应用栏。floatingActionButton
:一个悬停在屏幕右下角的按钮,您可以使用它来显示关键操作。
有关如何实现顶部和底部应用栏的更详细示例,请参阅应用栏页面。
您还可以像传递给其他容器一样传递Scaffold
内容。它将innerPadding
值传递给content
lambda,然后您可以在子可组合项中使用它。
以下示例提供了如何实现Scaffold
的完整示例。它包含一个顶部应用栏、底部应用栏和一个与Scaffold
的内部状态交互的浮动操作按钮。
@Composable fun ScaffoldExample() { var presses by remember { mutableIntStateOf(0) } Scaffold( topBar = { TopAppBar( colors = topAppBarColors( containerColor = MaterialTheme.colorScheme.primaryContainer, titleContentColor = MaterialTheme.colorScheme.primary, ), title = { Text("Top app bar") } ) }, bottomBar = { BottomAppBar( containerColor = MaterialTheme.colorScheme.primaryContainer, contentColor = MaterialTheme.colorScheme.primary, ) { Text( modifier = Modifier .fillMaxWidth(), textAlign = TextAlign.Center, text = "Bottom app bar", ) } }, floatingActionButton = { FloatingActionButton(onClick = { presses++ }) { Icon(Icons.Default.Add, contentDescription = "Add") } } ) { innerPadding -> Column( modifier = Modifier .padding(innerPadding), verticalArrangement = Arrangement.spacedBy(16.dp), ) { Text( modifier = Modifier.padding(8.dp), text = """ This is an example of a scaffold. It uses the Scaffold composable's parameters to create a screen with a simple top app bar, bottom app bar, and floating action button. It also contains some basic inner content, such as this text. You have pressed the floating action button $presses times. """.trimIndent(), ) } } }
此实现如下所示