Skip to content

Commit 50c18b8

Browse files
committed
Make impl screens private
1 parent a673f48 commit 50c18b8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/src/main/java/com/example/nav3recipes/modular/ConversationModule.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ object ConversationModule {
5959
}
6060

6161
@Composable
62-
fun ConversationListScreen(
62+
private fun ConversationListScreen(
6363
onConversationClicked: (ConversationDetail) -> Unit
6464
) {
6565
LazyColumn(
@@ -89,7 +89,7 @@ fun ConversationListScreen(
8989
}
9090

9191
@Composable
92-
fun ConversationDetailScreen(
92+
private fun ConversationDetailScreen(
9393
conversationDetail: ConversationDetail,
9494
onProfileClicked: () -> Unit
9595
) {

app/src/main/java/com/example/nav3recipes/modular/ProfileModule.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ object ProfileModule {
3737
}
3838

3939
@Composable
40-
fun ProfileScreen() {
40+
private fun ProfileScreen() {
4141
val profileColor = MaterialTheme.colorScheme.surfaceVariant
4242
Column(
4343
modifier = Modifier

0 commit comments

Comments
 (0)