responsive xamarin forms

xamarin.forms responsive

Make your Xamarin.Forms layout responsive.

Hi everyone, I’m sure most of you reading this have already felt the need of making your Xamarin.Forms application adapt according to screen sizes on various devices like tablet, or most especially when your app is running on a PC with UWP. Well, I’m sure this is very common especially for those who care a lot about the beauty of the front end side of their app.

Thanks to the simplicity of Xamarin.Forms and Xaml, accomplishing this is not complicated at all. I was going through the demo application built by Microsoft for connect 2017 which took place on November. Here is the app. It has a lot of features for every .Net developer (Front end and Back end), who are willing to learn from a high quality app ready for a production. I saw this little trick to adjust the layout when screen size changes.

Sign up to stay updated for any new post

[zc4wp_za2]

Adjusting the layout.

Since this is just a small demo, I think it can easily be accomplished by anyone without necessarily having a demo code to help. If this is not the case, check the link above for the demo app I mentioned.

Let’s say you have an application with a Xaml page and controls in a container like the Grid, what you should do in subscribe to size changes events from your page and adjust controls in the grid, and the control visibility when ever this size changes. Check the layout below.

Here is the demo content for the page. Look at the the box views the first one is wider than the second and spans 2 colums. This makes the second box to hide its self when the screen size is small.

Let us look at the code behind where the trick is found.

We set the minimum width at which the page changes at 720 pixels. We subscribe to the size change event of the page. When the page’s size is allocated or when the page’s size changes we adapt the layout. Make the second box visible or not, and make the first box to span one or two columns accordingly.

With this simple ad short demo, I think making a layout which is more responsive will be easy from here. I sincerely hope this post helps anyone reading it anywhere in the world.

If you liked this post, or it was useful to you, please like it, share it on twitter, facebook or other social media… in case you want to get updated on any new useful post, follow me on twitter  and like my page on facebook.

Build a beautiful high quality apps with reactive ui and Xamarin.Forms get started here.

Sign up to stay updated for any new post

[zc4wp_za2]

Follow me on social media and stay updated

2 comments

  1. Mirco Støpke

    Reply

    The Propertyname for the (Background)color of a BoxView is just Color, not BackgroundColor.

    Better edit this, because it confuses the viewer, who types your code 🙂

    • Damien Doumer

      Reply

      This post dates back to several years, manythings must have changed in Xamarin.Forms, Thanks for the suggestion I’ll verify and edit.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.