update ble pair

This commit is contained in:
Chowdhury, Shohrab 2019-05-14 14:37:41 -04:00
parent f632d69b4c
commit 150c218ea7
2 changed files with 10 additions and 0 deletions

View File

@ -160,6 +160,10 @@ B3 -> Legal
//55Rg 16pt for 5G flow
+ (nullable UIFont *)font5GMessage:(BOOL)genericScaling;
//55Rg 16pt for 5G flow scale YES
+ (nullable UIFont *)font5GMessage;
// Returns the fonts for these styles allowing to apply a generic scale by device or not.
+ (nullable UIFont *)fontForBiggerHeadLine:(BOOL)genericScaling;
+ (nullable UIFont *)fontForPlan:(BOOL)genericScaling;

View File

@ -355,6 +355,12 @@ CGFloat const LabelWithInternalButtonLineSpace = 2;
return [MFFonts mfFont55Rg:size];
}
+ (nullable UIFont *)font5GMessage {
CGFloat size = 16;
size = [self sizeFontGenericForCurrentDevice:size];
return [MFFonts mfFont55Rg:size];
}
+ (nullable UIFont *)fontForHeadlineAlternative:(BOOL)genericScaling {
CGFloat size = 24;