Test higher level.
This commit is contained in:
parent
ccdd54f2b7
commit
3f44b895fc
1 changed files with 4 additions and 6 deletions
|
|
@ -41,7 +41,6 @@ fun CrashDetectionView(
|
|||
|
||||
if (state.crashDetected) {
|
||||
CrashDetectionContent(
|
||||
state,
|
||||
onYesClicked = onOpenBugReport,
|
||||
onNoClicked = ::onPopupDismissed,
|
||||
onDismiss = ::onPopupDismissed,
|
||||
|
|
@ -51,7 +50,6 @@ fun CrashDetectionView(
|
|||
|
||||
@Composable
|
||||
fun CrashDetectionContent(
|
||||
state: CrashDetectionState,
|
||||
onNoClicked: () -> Unit = { },
|
||||
onYesClicked: () -> Unit = { },
|
||||
onDismiss: () -> Unit = { },
|
||||
|
|
@ -69,15 +67,15 @@ fun CrashDetectionContent(
|
|||
|
||||
@Preview
|
||||
@Composable
|
||||
internal fun CrashDetectionContentLightPreview() = ElementPreviewLight { ContentToPreview() }
|
||||
internal fun CrashDetectionViewLightPreview() = ElementPreviewLight { ContentToPreview() }
|
||||
|
||||
@Preview
|
||||
@Composable
|
||||
internal fun CrashDetectionContentDarkPreview() = ElementPreviewDark { ContentToPreview() }
|
||||
internal fun CrashDetectionViewDarkPreview() = ElementPreviewDark { ContentToPreview() }
|
||||
|
||||
@Composable
|
||||
private fun ContentToPreview() {
|
||||
CrashDetectionContent(
|
||||
state = aCrashDetectionState()
|
||||
CrashDetectionView(
|
||||
state = aCrashDetectionState().copy(crashDetected = true)
|
||||
)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue