TabOrderStepView.swift 722 B

123456789101112131415161718192021222324
  1. // LoopFollow
  2. // TabOrderStepView.swift
  3. import SwiftUI
  4. /// Lets the user arrange which features live in the tab bar versus the Menu,
  5. /// during onboarding. Reuses the same drag-to-reorder list as the Settings
  6. /// "Tabs" screen so behavior stays identical.
  7. struct TabOrderStepView: View {
  8. var body: some View {
  9. VStack(spacing: 0) {
  10. OnboardingStepHeader(
  11. systemImage: "square.grid.2x2",
  12. title: "Arrange your tabs",
  13. subtitle: "Pick which features sit in the tab bar. You can always reach everything through the Menu."
  14. )
  15. .padding(.horizontal)
  16. .padding(.top, 8)
  17. TabCustomizationModal()
  18. }
  19. }
  20. }