如何为 iOS 自定义 Xamarin toasts 插件?

How to customize Xamarin toasts plugin for iOS?

我们正在处理 xamarin 表单项目。我们已经使用 Toasts Plugin for Xamarin.Forms 来显示祝酒词。下面提到的是插件的link-Toasts Plugin for Xamarin.Forms

该插件在 Android 上运行良好,但在 iOS 上它不允许多行文本。我们已尝试对其进行自定义以实现此目的,但无用且可用的帮助有限。请建议任何帮助或任何其他可用于显示吐司消息的插件。附上屏幕截图:-

您可以修改源代码中的第210行

https://github.com/EgorBo/Toasts.Forms.Plugin/blob/master/Toasts.Forms.Plugin.iOS/MessageView.cs

来自

        Description.DrawString(descriptionRectangle, DescriptionFont, UILineBreakMode.TailTruncation, UITextAlignment.Left);

        Description.DrawString(descriptionRectangle, DescriptionFont, UILineBreakMode.WordWrap, UITextAlignment.Left);

我也遇到了这个问题,我刚刚放弃了这个插件,我打算切换到这个 UserDialogs Plugin 因为它提供了更多。我们有更多帮助。它还解决了上述问题。