Skip to main content
Version: .NET MAUI SDK

Screen tracking

You can track screen visited by your users, along with properties describing the screen.

Requirements:
  • Screen names must be less than 128 characters long.
  • Authorized characters are alphanumeric (uppercase included) and you can insert the following special characters: '-', '_', '.', ' ' (space), '/', and ':'.
using Screeb.Maui;

await Screeb.TrackScreen("MyHomeScreen");

Attributes

In order to bring context to your event handling, some properties can be added to the screen.

Requirements:
  • Property names must be limited to 128 characters
  • No more than 1000 attributes
  • Supported types for values: string, number (Int, Long, Double), boolean and Date.
using Screeb.Maui;

// screen tracking with custom properties
await Screeb.TrackScreen("MyHomeScreen", new Dictionary<string, object>
{
["example-prop1"] = false,
["example-prop2"] = 29,
["example-prop3"] = "iPhone 13"
});