mirror of
https://github.com/bitwarden/android.git
synced 2024-12-18 23:31:52 +03:00
few style updates to extension
This commit is contained in:
parent
515412f863
commit
f1ef1a0ce0
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue