Skip to content

Commit

Permalink
Refactor : Adjust access modifiers for Calendar module components
Browse files Browse the repository at this point in the history
  • Loading branch information
DongChyeon committed Dec 29, 2024
1 parent b91e53d commit 3d70ad8
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions calendar/src/main/java/com/dongchyeon/calendar/ui/Calendar.kt
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package com.dongchyeon.calendar.ui

import android.annotation.SuppressLint
import android.os.Build
import androidx.annotation.RequiresApi
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Box
Expand Down Expand Up @@ -114,7 +112,7 @@ fun Calendar(
}

@Composable
fun MonthSelector(
private fun MonthSelector(
modifier: Modifier = Modifier,
config: CalendarHeaderConfig,
calendarLanguage: CalendarLanguage,
Expand Down Expand Up @@ -176,7 +174,7 @@ fun MonthSelector(
}

@Composable
fun WeekHeader(
private fun WeekHeader(
modifier: Modifier = Modifier,
itemWidth: Dp,
config: CalendarWeekHeaderConfig,
Expand Down Expand Up @@ -212,7 +210,7 @@ fun WeekHeader(

@SuppressLint("NewApi")
@Composable
fun Week(
private fun Week(
modifier: Modifier = Modifier,
itemWidth: Dp,
events: List<CalendarEvent>,
Expand Down

0 comments on commit 3d70ad8

Please sign in to comment.