1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-25 10:26:02 +02:00

few style updates to extension

This commit is contained in:
Kyle Spearrin 2016-06-30 21:48:56 -04:00
parent 515412f863
commit f1ef1a0ce0

View File

@ -43,6 +43,8 @@ namespace Bit.iOS.Extension
filteredSiteModels = siteModels.Where(s => s.Domain.BaseDomain == domain.BaseDomain);
}
tableView.RowHeight = UITableView.AutomaticDimension;
tableView.EstimatedRowHeight = 44;
tableView.Source = new TableSource(filteredSiteModels, this);
AutomaticallyAdjustsScrollViewInsets = false;
}
@ -94,6 +96,7 @@ namespace Bit.iOS.Extension
cell.TextLabel.Text = item.Name;
cell.DetailTextLabel.Text = item.Username;
cell.DetailTextLabel.TextColor = cell.DetailTextLabel.TintColor = new UIColor(red: 0.47f, green: 0.47f, blue: 0.47f, alpha: 1.0f);
return cell;
}