Index: ios/chrome/browser/ui/settings/dataplan_usage_collection_view_controller.mm |
diff --git a/ios/chrome/browser/ui/settings/dataplan_usage_collection_view_controller.mm b/ios/chrome/browser/ui/settings/dataplan_usage_collection_view_controller.mm |
index b79607afefecd064d41a18ef5991642aa7c8dcc6..0c414c93113dbfee2aa8b798f22e0dabffe00c51 100644 |
--- a/ios/chrome/browser/ui/settings/dataplan_usage_collection_view_controller.mm |
+++ b/ios/chrome/browser/ui/settings/dataplan_usage_collection_view_controller.mm |
@@ -9,10 +9,13 @@ |
#import "base/mac/scoped_nsobject.h" |
#include "components/prefs/pref_member.h" |
#include "components/prefs/pref_service.h" |
+#import "ios/chrome/browser/ui/collection_view/cells/collection_view_text_cell.h" |
#import "ios/chrome/browser/ui/collection_view/cells/collection_view_text_item.h" |
#import "ios/chrome/browser/ui/collection_view/collection_view_model.h" |
#include "ios/chrome/grit/ios_strings.h" |
#import "ios/third_party/material_components_ios/src/components/CollectionCells/src/MaterialCollectionCells.h" |
+#import "ios/third_party/material_components_ios/src/components/Palettes/src/MaterialPalettes.h" |
+#import "ios/third_party/material_components_ios/src/components/Typography/src/MaterialTypography.h" |
#include "ui/base/l10n/l10n_util.h" |
#include "ui/base/l10n/l10n_util_mac.h" |
@@ -144,6 +147,30 @@ typedef NS_ENUM(NSInteger, ItemType) { |
return l10n_util::GetNSString(IDS_IOS_OPTIONS_DATA_USAGE_NEVER); |
} |
+#pragma mark - UICollectionViewDataSource |
+ |
+- (UICollectionViewCell*)collectionView:(UICollectionView*)collectionView |
+ cellForItemAtIndexPath:(NSIndexPath*)indexPath { |
+ UICollectionViewCell* cell = |
+ [super collectionView:collectionView cellForItemAtIndexPath:indexPath]; |
+ |
+ NSInteger type = [self.collectionViewModel itemTypeForIndexPath:indexPath]; |
+ switch (type) { |
+ case ItemTypeOptionsAlways: |
+ case ItemTypeOptionsOnlyOnWiFi: |
+ case ItemTypeOptionsNever: { |
+ CollectionViewTextCell* textCell = |
+ base::mac::ObjCCastStrict<CollectionViewTextCell>(cell); |
+ textCell.textLabel.font = [MDCTypography body2Font]; |
+ textCell.textLabel.textColor = [[MDCPalette greyPalette] tint900]; |
+ textCell.detailTextLabel.font = [MDCTypography body1Font]; |
+ textCell.detailTextLabel.textColor = [[MDCPalette greyPalette] tint500]; |
+ break; |
+ } |
+ } |
+ return cell; |
+} |
+ |
#pragma mark - UICollectionViewDelegate |
- (void)collectionView:(UICollectionView*)collectionView |