Skip to content

DamianSuess/Learn.MauiPaymentUi

Repository files navigation

Sample Payment App UI with Prism.MAUI!

As the title says, this is a sample credit card payment screen is written using .NET MAUI and the Prism Library which runs on Windows, Android, iOS, and Tizen.

The sample app leverages Prism.MAUI for its easy-to-use Navigation Service for passing information and Dependency Injection with DryIOC. The sample also makes use of XAML Behaviors, dynamic styling, and shared PNG resources.

Featured On:

snppts-logo

Author: Damian Suess
Website: suesslabs.com

Prism.Maui update:

// Previously, Prism.Maui used:
.UsePrismApp<App>(prism => {... })

// Now, you define it as follows
.UseMauiApp<App>()
.UsePrism(prism => { ... })

References