Guides
In-depth guides for building great PlusUi applications.
Available Guides
| Guide | Description |
|---|---|
| Project Setup | App configuration, DI, pages, navigation |
| Theming | Styles, colors, fonts, custom themes |
| Best Practices | Patterns, performance, do’s and don’ts |
Quick Tips
Use Primary Constructors - PlusUi pages and ViewModels work great with C# primary constructors for dependency injection.
Fluent API - Chain methods for cleaner code:
.SetText("Hi").SetTextSize(20).SetMargin(new Margin(10))
Avoid Blocking the UI Thread - Use
async/awaitfor long operations to keep your app responsive.