Files
react-native/Libraries/Utilities/HMRLoadingView.ios.js
T
Dan Abramov e81c1e3c7a Change top bar colors for Hot Reloading label
Summary: The current grey one is very bland, hard to read (no contrast) and often looks like a bug. I've changed it to match the iOS Personal Hotspot colors which look more idiomatic.

Reviewed By: cpojer

Differential Revision: D15941200

fbshipit-source-id: d60a3744c73675b40f42c329c2a44e6b8b0a93dc
2019-06-21 09:02:47 -07:00

36 lines
804 B
JavaScript

/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
* @flow strict-local
*/
'use strict';
const processColor = require('../StyleSheet/processColor');
import NativeDevLoadingView from './NativeDevLoadingView';
class HMRLoadingView {
static showMessage(message: string) {
if (NativeDevLoadingView != null) {
NativeDevLoadingView.showMessage(
message,
// Use same colors as iOS "Personal Hotspot" bar.
processColor('#ffffff'),
processColor('#2584e8'),
);
}
}
static hide() {
if (NativeDevLoadingView != null) {
NativeDevLoadingView.hide();
}
}
}
module.exports = HMRLoadingView;