Platform Settings
The PlatformSettings class represents a contract for accessing platform-specific settings and information. Some of these settings might be changed by the user globally in the OS in runtime.
The PlatformSettings can be access through an instance of TopLevel or Window, for more details on accessing TopLevel please visit TopLevel page:
var platformSettings = window.PlatformSettings;
Methods
GetTapSize(PointerType type)
Returns the size of the rectangle around the location of a pointer down that a pointer up must occur within in order to register a tap gesture, in device-independent pixels.
Size GetTapSize(PointerType type);
GetDoubleTapSize(PointerType type)
Returns the size of the rectangle around the location of a pointer down that a pointer up must occur within in order to register a double-tap gesture, in device-independent pixels.
Size GetDoubleTapSize(PointerType type);