Make JS loading progress use tabular numbers

Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/20076

Differential Revision: D14162853

Pulled By: cpojer

fbshipit-source-id: a07b80319e23f8969887522b8761a560e8a3a98e
This commit is contained in:
Jacob Parker
2019-02-20 22:11:11 -08:00
committed by Facebook Github Bot
parent fd96e2cb2c
commit 30f13812ad

View File

@@ -90,7 +90,8 @@ RCT_EXPORT_METHOD(showMessage:(NSString *)message color:(UIColor *)color backgro
// set a root VC so rotation is supported
self->_window.rootViewController = [UIViewController new];
self->_label.font = [UIFont systemFontOfSize:12.0];
self->_label.font = [UIFont monospacedDigitSystemFontOfSize:12.0
weight:UIFontWeightRegular];
self->_label.textAlignment = NSTextAlignmentCenter;
}