Example #1
0
 protected void UpdateHeight(CellBase cell)
 {
     if (cell?.Cell != null)
     {
         cell.HeightRequest = (int)cell.Cell.RenderHeight;
     }
 }
Example #2
0
 private static void UpdateIsEnabled(CellBase cell)
 {
     if (cell?.Cell != null)
     {
         cell.Sensitive = cell.Cell.IsEnabled;
     }
 }