1
0
mirror of https://github.com/nicoverbruggen/phpmon.git synced 2025-08-07 12:00:09 +02:00

👌 Tweak preview

This commit is contained in:
2022-08-12 21:07:38 +02:00
parent 4e5b178e36
commit cfbb83976d

View File

@ -49,6 +49,21 @@ struct WarningView: View {
struct WarningView_Previews: PreviewProvider {
static var previews: some View {
WarningListView().frame(width: 600, height: 480)
WarningView(
title: "warnings.helper_permissions.title",
paragraphs: ["warnings.helper_permissions.description"],
documentationUrl: "https://nicoverbruggen.be"
)
.frame(width: 600, height: 105)
WarningView(
title: "warnings.helper_permissions.title",
paragraphs: ["warnings.helper_permissions.description"],
documentationUrl: "https://nicoverbruggen.be"
)
.preferredColorScheme(.dark)
.frame(width: 600, height: 105)
// WarningListView().frame(width: 600, height: 580)
}
}