This is definitely an odd way to report the error that's actually happening, but as always there's always one error in a project where you think. What the hell is that? Value cannot be null Parameter Name: source usually happens on an IEnumerable for one reason. - read more.
8 Jan 2017
- 1 Comments
Some people have had trouble vertical aligning text tot he center of a Xamarin Foms Grid Cell, the answer is to add three simple attributes. - read more.
8 Jan 2017
Simple solution to a problem in Xamarin for iOS that might otherwise have you pulling your hair out for hours. - read more.
3 Jan 2017
- 1 Comments
Here I discuss why the error 'A route named 'umbraco-surface-BaseRoute' is already in the route collection' happens and how to fix it. - read more.
25 Dec 2016
In this post, I discuss what's required to keep a view persistent across multiple pages in Xamarin forms. This is useful for when you want to display messages or custom overlays for the user of your app. - read more.
13 Dec 2016
When creating an app the uses a MasterDetailPage as the root Page, you might sometimes find that you've got a large set of padding at the top of all your pages with seemingly no way to remove it. Here's the fix. - read more.
24 Nov 2016
- 4 Comments
Encountering the SQLite PCL error 'TypeInitializationException' after updating SQLite or installing it on a new project? This will solve it. - read more.
22 Nov 2016
JQuery UI's Autocomplete is a very handy and powerful tool, but when using a custom implementation, their documentation can be out of date this post covers how to access the autocomplete instance for newer versions. (.autocomplete( "instance" )) - read more.
9 Nov 2016
Mobile devices are optimised to run complex tasks on multiple threads. Running any form of complex task on the UI thread (the main thread) will cause the UI of your application to hang (or at least seem to anyway) until the operation is complete. The fix is to run the task on another thread and return a result back to the UI thread. - read more.
10 Oct 2016
- 7 Comments
A very quick tutorial on how to add a loading overlay window with a throbber in your Xamarin Forms mobile application - read more.
1 Sep 2016
- 11 Comments