Skip to content

Instantly share code, notes, and snippets.

@soheil-zz
Created April 23, 2015 01:11
Show Gist options
  • Save soheil-zz/502bb1a51fab139a7afb to your computer and use it in GitHub Desktop.
Save soheil-zz/502bb1a51fab139a7afb to your computer and use it in GitHub Desktop.
this.intervalID = this.setInterval(function(){
require('NativeModules').Native.statusBarSize();
}, 700)
var subscription = require('RCTDeviceEventEmitter').addListener(
'statusBarSize',
(size) => {
this.setState({statusBarHeight: size.height})
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment