public CategoryCell()
 {
     if (Device.OS == TargetPlatform.Windows || Device.OS == TargetPlatform.WinPhone)
         Height = 50;
     else
         Height = 44;
     View = new CategoryCellView ();
 }
 public CategoryCell()
 {
     if (Device.OS == TargetPlatform.Windows || Device.OS == TargetPlatform.WinPhone)
     {
         Height = 50;
     }
     else
     {
         Height = 44;
     }
     View = new CategoryCellView();
 }
Example #3
0
 public CategoryCell()
 {
     if (Device.RuntimePlatform == Device.UWP || Device.RuntimePlatform == Device.WinPhone)
     {
         Height = 50;
     }
     else
     {
         Height = 44;
     }
     View = new CategoryCellView();
 }