From 185795068c02c8f1cbfd552745392307bed60fff Mon Sep 17 00:00:00 2001 From: Edward Miller Date: Sun, 2 Feb 2025 10:27:25 -0600 Subject: [PATCH] add performance tip to README --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index aba44fd..20aff72 100644 --- a/README.md +++ b/README.md @@ -64,6 +64,19 @@ DataGrid library for .NET **MAUI** applications. ``` +## Tip + +If you are experiencing any issues on iOS, you can try adding the following to MauiProgram.cs + +```csharp +#if IOS || MACCATALYST +builder.ConfigureMauiHandlers(handlers => +{ + handlers.AddHandler(); +}); +#endif +``` + ## Screenshots ![Screenshot 2025-01-10 144417](https://github.com/user-attachments/assets/0f8b3bb1-a4e9-4620-bef2-c6821150fe12)