Use XAML Previewer To Preview Data In Xamarin Forms

This is my new article for Xamarin Forms Designer. If you are using Xamarin Forms Designer, I hope this will save you some time. In this article, we will learn how to use test data while designing your UI to see how your UI look like without much effort.
 
New Xamarin.Forms provides a solution for faster design and preview of your UI, i.e., XAML Previewer. The XAML Previewer allows you to preview of your dummy data at design time. You don't need to build, compile, and deploy your app to see the UI output. 
 
Here is 3 lines of code that you placed in XAML namespace.
  1. xmlns:d="http://xamarin.com/schemas/2014/forms/design"  
  2. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"  
  3. mc:Ignorable="d"  
After adding this namespace, you can use “d:” for the dummy data. For example, d:Text=”ABCD!”. With this attribute on a control, the control will be displayed in XAML Previewer.
 
NOTE
Element with d: do now show at the run time.
 
Requirements
(XAML Previewer) Design time data requires a minimum version of Xamarin.Forms 3.6 or later.
 
Example 
  1. <StackLayout d:Padding="0,20">   
  2.         <Label d:Text="This is Design time test data"   
  3.  d:TextColor="Red"  
  4.                HorizontalOptions="Center"  
  5.                VerticalOptions="CenterAndExpand" />  
  6. </StackLayout>  
XAML Previewer (Design Time Data)
 
You can use any Xamarin Forms attribute like control, Fontsize, TextColor, Spacing any control or the property you can use with this “d:”, this will be shown in design  preview only.
 
Another Example
  1. <d:Button Text="Design Time"   
  2.                   BorderColor="Black"   
  3.                   BorderWidth="3" CornerRadius="25" VerticalOptions="CenterAndExpand"/>  
XAML Previewer (Design Time Data)
 
This is nice ☺!!
 
XAML Previewer Design-time data in Image
 
You can also set the image source at design time or load it dynamically. In your android project, add images you want to show in the XAML Previewer. In android you can put images in Resources &gt;&gt; Drawable folder and in iOS project you can put images in the resources folder.
  1. <Image Source={Binding ProfilePicture} d:Source="demo.png" />   
XAML Previewer (Design Time Data)
 
XAML Previewer Design time data in ListViews
 
ListView is one of the most popular controls to display multiple data in a list format. It is very difficult to visualize it without data. So the solution is design time array as an Itemsource.
 
Example 
  1. <StackLayout>  
  2.     <ListView ItemsSource="{Binding Items}">  
  3.         <d:ListView.ItemsSource>  
  4.             <x:Array Type="{x:Type x:String}">  
  5.                 <x:String>Item One</x:String>  
  6.                 <x:String>Item Two</x:String>  
  7.                 <x:String>Item Three</x:String>  
  8.             </x:Array>  
  9.         </d:ListView.ItemsSource>  
  10.         <ListView.ItemTemplate>  
  11.             <DataTemplate>  
  12.                 <TextCell Text="{Binding ItemName}"  
  13.                           d:Text="{Binding .}" />  
  14.             </DataTemplate>  
  15.         </ListView.ItemTemplate>  
  16.     </ListView>  
  17. </StackLayout>   
XAML Previewer (Design Time Data) 
 
I hope it helps your UI design speed.


Recommended Free Ebook
Similar Articles