TabPosition.swift 417 B

1234567891011121314151617181920
  1. // LoopFollow
  2. // TabPosition.swift
  3. // Created by Jonas Björkert.
  4. enum TabPosition: String, CaseIterable, Codable {
  5. case position2
  6. case position4
  7. case more
  8. case disabled
  9. var displayName: String {
  10. switch self {
  11. case .position2: return "Tab 2"
  12. case .position4: return "Tab 4"
  13. case .more: return "More Menu"
  14. case .disabled: return "Hidden"
  15. }
  16. }
  17. }