TextCase.swift 243 B

123456789
  1. extension Text {
  2. /// How to transform the capitalization of text.
  3. public enum Case: Hashable, Sendable {
  4. /// Makes text all lowercase.
  5. case lowercase
  6. /// Makes text all uppercase.
  7. case uppercase
  8. }
  9. }