mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
e81c1e3c7a
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
36 lines
804 B
JavaScript
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;
|