Pushes a fullscreen onto the stack
export class MyScreen extends React.PureComponent { private readonly showFullscreen = (): void => { const instance = fullscreen(This will be shown in the fullscreen display); instance.visible; // -> true // Some point later instance.close(); instance.visible; // -> false } } `
true
false
`
the elements to render inside the fullscreen
the interface to programatically close the fullscreen
Pushes a fullscreen onto the stack
export class MyScreen extends React.PureComponent { private readonly showFullscreen = (): void => { const instance = fullscreen(This will be shown in the fullscreen display );
instance.visible; // ->
true
// Some point later instance.close(); instance.visible; // ->false
} }`