Add new type files from decompiled source

- FlexDirection, FlexWrap, FlexJustify, FlexAlignItems, FlexAlignContent, FlexAlignSelf enums
- FlexBasis struct for flex layout
- ContextMenuItem class for context menus
- ISkiaQueryAttributable interface for shell navigation
- SkiaTextSpan class for formatted text

These types support FlexLayout, context menus, and text formatting.
Other types (event args, enums, etc.) were already defined inline in View files.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-01 10:07:57 -05:00
parent 1e84c6168a
commit d0d8e92dad
11 changed files with 549 additions and 0 deletions

8
Types/FlexWrap.cs Normal file
View File

@@ -0,0 +1,8 @@
namespace Microsoft.Maui.Platform;
public enum FlexWrap
{
NoWrap,
Wrap,
WrapReverse
}