Scaffold
マテリアル デザインにおけるスキャフォールドは、 標準化されたプラットフォームであり複数のコンポーネントを組み合わせて UI の一部(アプリバーやフローティング アクション ボタンなど)により、アプリに 統一感のあるデザインにできます
例
Scaffold
コンポーザブルには、次のような単純な API が用意されています。
マテリアル デザイン ガイドラインに沿ってアプリの構造をすばやく組み立てることができます。
Scaffold
は、パラメータとして複数のコンポーザブルを受け入れます。その中には
次のとおりです。
topBar
: 画面上部のアプリバー。bottomBar
: 画面下部にあるアプリバー。floatingActionButton
: 画面の右下にマウスオーバーするボタン キーアクションを表示するために使用できる画面です。
上部と下部の両方を実装する方法の詳細な例については、 アプリバーのページをご覧ください。
また、他のコンテナと同様に、Scaffold
のコンテンツを渡すことができます。合格
content
ラムダに対する innerPadding
値。子要素で使用できます。
作成できます。
次の例は、Google Cloud SDK の実装方法の完全な例を示しています。
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(), ) } } }
これを実装すると次のようになります。