mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-01-12 22:51:09 +08:00
Fixes dozens of Flow errors; adds type annotations; marks more files for Flow type checking. Fixes a bug in 'AppState'. 15 Flow errors remaining. Several React Native files are still not type checked (e.g., PanResponder, Touchables) Ref #465
19 lines
316 B
JavaScript
19 lines
316 B
JavaScript
/**
|
|
* @flow
|
|
*/
|
|
|
|
import { Component } from 'react';
|
|
|
|
class StatusBar extends Component {
|
|
static setBackgroundColor() {}
|
|
static setBarStyle() {}
|
|
static setHidden() {}
|
|
static setNetworkActivityIndicatorVisible() {}
|
|
static setTranslucent() {}
|
|
render() {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
module.exports = StatusBar;
|