- Added:
TextState
, a testable, equatable description of SwiftUIText
. Useful for when you want to store dynamic, stylized text in your app's state. - Changed:
AlertState
andActionSheetState
now useTextState
under the hood. - Fixed: worked around a bug affecting iOS 13.0-13.2 that prevented state changes from being reflected in the view (thanks @nsillik).
- Fixed:
AlertState
andActionSheetState
can once again be used with verbatim strings (thanks @ohitsdaniel). - Deprecated:
AlertState
andActionSheetState
initializers that takeLocalizedStringKey
. Migration path: use the initializers that take explicitTextState
instead (which can be initialized with bothLocalizedStringKey
and verbatimString
s).