Skip to content

Commit

Permalink
add performance tip to README
Browse files Browse the repository at this point in the history
  • Loading branch information
Edward Miller committed Feb 2, 2025
1 parent 3bd744c commit 1857950
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,19 @@ DataGrid library for .NET **MAUI** applications.
</dg:DataGrid>
```

## 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<Microsoft.Maui.Controls.CollectionView, Microsoft.Maui.Controls.Handlers.Items2.CollectionViewHandler2>();
});
#endif
```

## Screenshots

![Screenshot 2025-01-10 144417](https://github.com/user-attachments/assets/0f8b3bb1-a4e9-4620-bef2-c6821150fe12)
Expand Down

0 comments on commit 1857950

Please sign in to comment.