-
Notifications
You must be signed in to change notification settings - Fork 7
Common Patterns and Fixes
David Ortinau edited this page Apr 10, 2025
·
3 revisions
| Symptom | Cause | Fix |
|---|---|---|
| UI hangs on button tap |
.Result or .Wait() blocking async work |
Use await and make calling methods async |
| Scrolling is janky | Too many views rendered in a list | Use CollectionView with virtualization |
| Memory grows over time | Event or delegate keeps objects alive | Unsubscribe events on page disappear or dispose |
| Startup takes >3s | Synchronous work in app init | Defer non-critical work or use lazy services |
For detailed remediation, revisit earlier guides or use the Quick Checklist again.
🏁 You're done! Or loop back to re-check another area.