Rename top bar to CreateRoomRootViewTopBar

This commit is contained in:
Maxime NATUREL
2023-03-03 16:15:33 +01:00
committed by Florian Renaud
parent 1827faec9c
commit bcaf71a917

View File

@@ -45,7 +45,7 @@ fun CreateRoomRootScreen(
Scaffold(
modifier = modifier.fillMaxWidth(),
topBar = {
CreateRoomViewTopBar(onClosePressed = onClosePressed)
CreateRoomRootViewTopBar(onClosePressed = onClosePressed)
}
) {
}
@@ -53,7 +53,7 @@ fun CreateRoomRootScreen(
@OptIn(ExperimentalMaterial3Api::class)
@Composable
fun CreateRoomViewTopBar(
fun CreateRoomRootViewTopBar(
modifier: Modifier = Modifier,
onClosePressed: () -> Unit = {},
) {