TabPosition.swift 386 B

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