Skip to content

Commit

Permalink
#21 외부 모듈에서 접근할 수 없도록 internal 접근자 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
laco-dev committed Jul 7, 2023
1 parent 1d024ab commit ba82fd5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import androidx.compose.ui.res.painterResource
import androidx.compose.ui.unit.dp

@Composable
fun MainScreen() {
internal fun MainScreen() {
var currentTab by remember { mutableStateOf(MainTab.HOME) }
Scaffold(
content = { padding ->
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.droidknights.app2023.feature.main

enum class MainTab(
internal enum class MainTab(
val iconResId: Int,
) {
SETTING(R.drawable.ic_setting),
Expand Down

0 comments on commit ba82fd5

Please sign in to comment.