Fix an inconsistency in the App Lock screen's background colour. (#2035)

This commit is contained in:
Doug
2023-11-07 09:49:19 +00:00
committed by GitHub
parent 29bb90c1b1
commit b93a2a5860
2 changed files with 3 additions and 1 deletions

View File

@@ -56,7 +56,8 @@ struct AppLockScreen: View {
}
.font(.compound.bodyMDSemibold)
}
.background(Color.compound.bgCanvasDefault.ignoresSafeArea())
.background()
.environment(\.backgroundStyle, AnyShapeStyle(Color.compound.bgCanvasDefault))
.alert(item: $context.alertInfo)
}

1
changelog.d/2029.bugfix Normal file
View File

@@ -0,0 +1 @@
Fix an inconsistency in the App Lock screen's background colour.