diff --git a/._AlertToast.podspec b/._AlertToast.podspec index 15ea5ef..382cc24 100644 Binary files a/._AlertToast.podspec and b/._AlertToast.podspec differ diff --git a/._LICENSE.md b/._LICENSE.md index eca0d7a..b9b0592 100644 Binary files a/._LICENSE.md and b/._LICENSE.md differ diff --git a/._Package.swift b/._Package.swift index 469935b..348d09f 100644 Binary files a/._Package.swift and b/._Package.swift differ diff --git a/.swiftpm/xcode/._package.xcworkspace b/.swiftpm/xcode/._package.xcworkspace index 934e800..052b6de 100644 Binary files a/.swiftpm/xcode/._package.xcworkspace and b/.swiftpm/xcode/._package.xcworkspace differ diff --git a/AlertToast.podspec b/AlertToast.podspec index e20e693..f44c72d 100644 --- a/AlertToast.podspec +++ b/AlertToast.podspec @@ -16,7 +16,7 @@ Pod::Spec.new do |spec| # spec.name = "AlertToast" - spec.version = "1.3.8" + spec.version = "1.3.9" spec.summary = "Create Apple-like alerts & toasts using SwiftUI" # This description is used to generate tags and improve search results. diff --git a/README.md b/README.md index 86c1b4f..14c3f0d 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Currently in SwiftUI, the only way to inform the user about some process that fi Alert Toast is an open-source library in Github to use with SwiftUI. It allows you to present popups that don't need any user action to dismiss or to validate. Some great usage examples: `Message Sent`, `Poor Network Connection`, `Profile Updated`, `Logged In/Out`, `Favorited`, `Loading` and so on... -          +          * Built with pure SwiftUI. * 3 Display modes: `Alert` (pop at the center), `HUD` (drop from the top) and `Banner` (pop/slide from the bottom). diff --git a/Sources/AlertToast/._AlertToast.swift b/Sources/AlertToast/._AlertToast.swift index 9eb4110..f438106 100644 Binary files a/Sources/AlertToast/._AlertToast.swift and b/Sources/AlertToast/._AlertToast.swift differ diff --git a/Sources/AlertToast/AlertToast.swift b/Sources/AlertToast/AlertToast.swift index d79ad35..5d755e4 100644 --- a/Sources/AlertToast/AlertToast.swift +++ b/Sources/AlertToast/AlertToast.swift @@ -260,7 +260,6 @@ public struct AlertToast: View{ .font(style?.subTitleFont ?? Font.subheadline) } } - .fixedSize(horizontal: true, vertical: false) .multilineTextAlignment(.leading) .textColor(style?.titleColor ?? nil) .padding() @@ -316,7 +315,6 @@ public struct AlertToast: View{ } } } - .fixedSize(horizontal: true, vertical: false) .padding(.horizontal, 24) .padding(.vertical, 8) .frame(minHeight: 50)