Study Record

[Android] Compose Appbar 본문

안드로이드/compose

[Android] Compose Appbar

초코초코초코 2023. 9. 4. 20:45
728x90

😶 Compose 간단한 앱바

앱바를 구현하는 간단한 방법은 Scaffod 의 topBar 매개변수를 이용하는 것이다. 간단하게 중앙에 글자만 있는 버전이다.

Scaffold(
    topBar = {
        TestAppBar()
    }
) { it ->
    /* */
}

@Composeable
fun TestAppBar() {
    CenterAlignedTopAppBar(
        title = {
          Row(
              verticalAlignment = Alignment.CenterVertically
          ) {
              Text(
                  text = stringResource(id = R.string.app_name),
                  style = MaterialTheme.typography.displayLarge
              )
          }
        },
        modifier = modifier,
    )
}

 

728x90