v1.2.0
- Fixed issue where
localStorage
was not available inside VM - Fixed bug where
hydrate-view
request was failing - Auto refresh fixed
- Added Spinner to be used as default Fallback
- Added a palliative feature to fix a bug that happens with react.
When content inside an iframe is updated, react adds an iframe covering the entire
screen using the maximum z-index, thus making any interaction with the application impossible. - Widget
NearSocialBridgeCore
updated. An issue while fetching data with Storage API was fixed.
TheUtils.promisify
method was also updated, now it's possible to set the timeout manually. - Added
Spinner
component to be used as defaultFallback
forcreateStackNavigator
andNearSocialBridgeProvider
.
E.g:
var myTimeout = 3000; // 3 sec
Utils.promisify(() => getCachedObject(), (res) => console.log(res), (err) => console.log(err), myTimeout)