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 30e8753663
commit 6adedaf267
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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.