The new first-party backend split lets a host use the operating system's text stack directly instead of routing everything through SkiaSharp.
dotnet add package Pretext
dotnet add package Pretext.DirectWrite # Windows
dotnet add package Pretext.FreeType # Linux
dotnet add package Pretext.CoreText # macOS
Add Pretext.Layout as well when you want shrinkwrap or obstacle-layout helpers outside Uno.
If only one native backend is referenced for the current OS, discovery is usually enough. Use an explicit factory assignment when your app startup should make the backend obvious in code:
using Pretext;
using Pretext.CoreText;
PretextLayout.SetTextMeasurerFactory(new CoreTextTextMeasurerFactory());
That is the pattern used by the native macOS sample host in samples/PretextSamples.MacOS/AppDelegate.cs.
Pair native backends with:
Pretext.Layout for wrap metrics, columns, and obstacle carvingPretext.Uno only when your UI host itself is Uno Platform