Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,15 @@ private fun MainPageScreen(
}
}
Box(modifier = Modifier.align(alignment = Alignment.BottomEnd)) {
JoinWaitingButton(
modifier = modifier.padding(bottom = 96.dp, end = 8.dp),
onClick = { openDialog = true }
)
when (role) {
Authority.ROLE_STUDENT -> {}
Authority.ROLE_TEACHER -> {
JoinWaitingButton(
modifier = modifier.padding(bottom = 96.dp, end = 8.dp),
onClick = { openDialog = true }
)
Comment on lines +109 to +112
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

์ด ๋ถ€๋ถ„์„ ํ”Œ๋กœํŒ…๋ฒ„ํŠผ์œผ๋กœ ์ฒ˜๋ฆฌํ•˜๋Š”๊ฒŒ ์–ด๋–จ๊นŒ์š”?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

786903b ์ˆ˜์ •ํ–ˆ์Šต๋‹ˆ๋‹ค

}
}
}
Box(
modifier = Modifier.align(alignment = Alignment.BottomCenter),
Expand Down