albyrock87.hashnode.devIntroducing the new .NET MAUI Expander viewWhy another expander control? There are many free expander controls out there but none of them is built to leverage the .NET MAUI layout system properly. On top of that, they all include some kind of accordion-like style which may not be what you’re ...Feb 10, 2025·4 min read
albyrock87.hashnode.devFixing: Could not find any available provisioning profiles for your MAUI appScenario Imagine buying a new MacBook and installing / configuring all the prerequisites to build your MAUI app: Install latest .NET SDK (https://dotnet.microsoft.com/en-us/download) Run sudo dotnet workload install maui-mobile Install latest XCo...Feb 6, 2025·2 min read
albyrock87.hashnode.devPreventing Memory Leaks in .NET MAUI: Best Practices and StrategiesPremise Memory leaks in .NET MAUI can occur in various ways, with events being a common culprit. This article will focus on memory leaks caused by events, while also highlighting concepts applicable to other scenarios. .NET events in general We all k...Dec 10, 2024·4 min read
albyrock87.hashnode.devHow to Create a Content-Sized WebView in .NET MAUI Mobile: A Step-by-Step GuideWhy having a content-sized WebView? Sometimes, an app needs to display content created on the web, perhaps through a WYSIWYG editor, and typically, we present it within a well-defined area of the screen. There are other situations where your WebView ...Oct 17, 2024·4 min read
albyrock87.hashnode.devFixing network connection loss in iOS with HttpClientWhat’s causing the issue? As a user I may receive phone calls or distracting notifications that "force" me to open another app, often a social media app. When this happens, iOS suspends the app causing active network requests to fail. In this scenari...Oct 8, 2024·3 min read