Do you have ever asked yourself how to create a NuGet package for your awesome components or services you’ve created? If so you don’t have to look further! In this post, I will show you how you can create a template project so you can create your own NuGets for Xamarin.Forms!… Continue Reading
Tag Archives: Xamarin
Xamarin.Forms Localization
We’re always trying to reach more people with the apps we create. But to reach more people especially in different countries it’s important that our apps will support multiple languages!
To do so it’s the easiest way to add multi-language support before you gonna design your pages and hardcode every single string inside the controls or the view models.… Continue Reading
Xamarin.Forms non-resize Stack View (iOS)
Recently I’ve created custom grid control to prevent the keyboard from overlapping with other controls. This works quite well as long as you don’t have any stack views inside this custom grid. Because if you do have one inside the control the iOS renderer will add the same margin to any elements inside the stack view as it will add to the keyboard view (custom grid control).… Continue Reading
Xamarin.Forms automatically move controls when Keyboard is shown
Probably you are familiar with the scenario when you want to enter some data into an app and when the keyboard is shown it will overlap with other controls and either can hardly reach the elements lying under the keyboard or you just can’t go on using the app because of the keyboard blocks important navigation controls etc.… Continue Reading
Gradient Button in Xamarin.Forms
It’s the little things that make a UI a special one and gives a user a awesome user experience. One of these small things is the use of colors and backgrounds. To tweak your controls (we will cover buttons) this article will show you how to create a custom button with a gradient background.… Continue Reading
Change the App Icon in Xamarin.Forms
Customizing your App
If I start a new App one of the first changes I made, is to set my own icon for both platforms to check how it’s gonna look like. Having setup a proper, and especially your own, icon feels so much better than using the default one 😃
Set the Icon
There are quite some differences in how to set the app icon for iOS and Android.… Continue Reading
Dependency Service in Xamarin.Forms
How to use platform specific code
If you are building Xamarin.Forms Apps you will certainly encouter the problem that you have to use platform specific code to get some specific platform or hardware functions to work. Dependency Service allow you’re apps to call the platform specific code out of your shared code basis.… Continue Reading