If you want to load specific pages in fullscreen mode then there is simple method to request fullscreen with uiPress.
Use the following javascript on the pages you desire to be entered into fullscreen mode.
if (window.parent) {
window.parent.postMessage({ eventName: 'uip_request_fullscreen' }, '*');
}