Skip to content

Latest commit

 

History

History

SimpleToolkit.Core

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

SimpleToolkit.Core

SimpleToolkit.Core

The SimpleToolkit.Core package is a set of simple .NET MAUI controls and helpers.

Controls

These are all the controls this package has to offer:

  • Icon - control that allows you to display a tinted image
  • ContentButton - button that can hold whatever content you want
  • Popover - control that allows you to display custom popovers (flyouts) anchored to any control

Getting Started

In order to use the controls listed above, you need to call the UseSimpleToolkit() extension method in your MauiProgram.cs file:

builder.UseSimpleToolkit();

XAML namespace

All controls can be found in the following XAML namespace:

xmlns:simpleCore="clr-namespace:SimpleToolkit.Core;assembly=SimpleToolkit.Core"

Helpers

These are all the helpers this package has to offer:

  • Safe area helpers - helpers for managing the safe area of an application window
  • System bars helpers - helpers for changing the appearance of system bars on Android
  • Bounds helper - GetBounds() extension method returning the bounds of a VisualElement relative to another VisualElement or the app screen if no element is passed as an argument