Creates an error handler to show errors on-screen. This is useful when testing on mobile devices that lack access to the console.
const e = defaultErrorHandler(); Copy
const e = defaultErrorHandler();
Manual control:
const e = defaultErrorHandler();e.show(someError);e.hide(); Copy
const e = defaultErrorHandler();e.show(someError);e.hide();
Creates an error handler to show errors on-screen. This is useful when testing on mobile devices that lack access to the console.
Manual control: