Reskin: Factorise *RoomTitleViews

and apply them kRiotDesignNavigationBarBarTintColor as background color to mimic the nav bar color
This commit is contained in:
manuroe
2018-11-29 17:47:42 +01:00
parent 47edf4dcbd
commit 006dd7237c
4 changed files with 9 additions and 57 deletions
@@ -132,8 +132,10 @@
-(void)customizeViewRendering
{
[super customizeViewRendering];
self.displayNameTextField.textColor = (self.mxRoom.summary.displayname.length ? kRiotPrimaryTextColor : kRiotSecondaryTextColor);
// Use same color as navigation bar
self.backgroundColor = kRiotDesignNavigationBarBarTintColor;
self.displayNameTextField.textColor = (self.mxRoom.summary.displayname.length ? kRiotDesignNavigationBarTintColor : kRiotSecondaryTextColor);
}
- (void)setRoomPreviewData:(RoomPreviewData *)roomPreviewData
@@ -162,7 +164,7 @@
}
else
{
self.displayNameTextField.textColor = kRiotPrimaryTextColor;
self.displayNameTextField.textColor = kRiotDesignNavigationBarTintColor;
}
}
}