Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 12 additions & 11 deletions dashpilot-ios/dashpilot/UI/HomeView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,19 @@ struct HomeView: View {
Color.dashBackground
.ignoresSafeArea()

VStack(spacing: 0) {
header
Spacer().frame(height: 8)
widgetGrid
Spacer().frame(height: 32)
pinnedSection
actionButtons
Spacer().frame(height: 12)
DataSourceMenu(navigationPath: $navigationPath)
Spacer()
ScrollView {
VStack(spacing: 0) {
header
Spacer().frame(height: 8)
widgetGrid
Spacer().frame(height: 32)
pinnedSection
actionButtons
Spacer().frame(height: 12)
DataSourceMenu(navigationPath: $navigationPath)
}
.padding(DashMetrics.screenPadding)
}
.padding(DashMetrics.screenPadding)
}
.navigationBarHidden(true)
.task {
Expand Down
Loading