Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[개선] 공통 모듈에서 사용할 수 있는 UI 파일 분리 #326

Closed
wants to merge 6 commits into from
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import androidx.compose.foundation.verticalScroll
import androidx.compose.material3.CircularProgressIndicator
import androidx.compose.material3.HorizontalDivider
import androidx.compose.material3.Icon
import androidx.compose.material3.IconToggleButton
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
Expand Down Expand Up @@ -276,7 +275,7 @@ private fun BookmarkToggleButton(
bookmarked: Boolean,
onClickBookmark: (Boolean) -> Unit,
) {
IconToggleButton(
androidx.compose.material3.IconToggleButton(
checked = bookmarked,
onCheckedChange = onClickBookmark
) {
Expand Down
Loading