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 5b1dfb437c
commit 103ba86236

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 = {},
) {