Skip to content

Commit

Permalink
Design : 로딩 다이얼로그 컴포넌트 제작
Browse files Browse the repository at this point in the history
  • Loading branch information
DongChyeon committed Jun 18, 2024
1 parent 0000b71 commit 507daef
Showing 1 changed file with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package store.newsbriefing.app.core.designsystem

import androidx.compose.material3.CircularProgressIndicator
import androidx.compose.runtime.Composable
import androidx.compose.ui.window.Dialog
import androidx.compose.ui.window.DialogProperties
import store.newsbriefing.app.core.designsystem.theme.BriefingTheme

@Composable
fun LoadingDialog() {
Dialog(
onDismissRequest = { },
properties = DialogProperties(
dismissOnBackPress = true,
dismissOnClickOutside = true,
)
) {
CircularProgressIndicator(
color = BriefingTheme.colorScheme.PrimaryBlue
)
}
}

0 comments on commit 507daef

Please sign in to comment.