Fix sizing on setup view.

This commit is contained in:
Max Goedjen 2025-09-11 23:57:43 -07:00
parent ff90d0381c
commit 7665fc8b19
No known key found for this signature in database
2 changed files with 4 additions and 1 deletions

View File

@ -32,7 +32,6 @@ struct IntegrationsView: View {
.onAppear { .onAppear {
selectedInstruction = instructions.gettingStarted selectedInstruction = instructions.gettingStarted
} }
.frame(minHeight: 500)
} }
} }
@ -62,6 +61,7 @@ struct FauxToolbarModifier<ToolbarContent: View>: ViewModifier {
} }
} }
.frame(minWidth: 400, minHeight: 400)
} }
} }

View File

@ -172,10 +172,13 @@ struct StepView<Content: View>: View {
.frame(width: 20) .frame(width: 20)
VStack(alignment: .leading, spacing: 4) { VStack(alignment: .leading, spacing: 4) {
Text(title) Text(title)
.fixedSize(horizontal: false, vertical: true)
.bold() .bold()
Text(description) Text(description)
.fixedSize(horizontal: false, vertical: true)
if let detail { if let detail {
Text(detail) Text(detail)
.fixedSize(horizontal: false, vertical: true)
.font(.callout) .font(.callout)
.italic() .italic()
} }