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:
Author: Damian Suess
Website: suesslabs.com
// Previously, Prism.Maui used:
.UsePrismApp<App>(prism => {... })
// Now, you define it as follows
.UseMauiApp<App>()
.UsePrism(prism => { ... })