Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
43 views

My VoIP Android app shows a full-screen incoming call UI using Android’s full-screen intent (FSI). On Samsung Android 16, the FSI works perfectly when installing the debug build — but fails completely ...
Henrik's user avatar
  • 71
0 votes
0 answers
58 views

I'm building a floating mic/system audio visualizer widget in Electron. The widget uses a panel type BrowserWindow that stays on top of all windows, including fullscreen apps. The issue is that when ...
Johannes Bingen's user avatar
0 votes
0 answers
34 views

While using firebase in full screeen this top hide but after switching tabs in chrome this top bar appears again with firebase logo and google login info. How to remove this. i work on chrome on full ...
Anil Beniwal's user avatar
0 votes
0 answers
67 views

I'm trying to get fullscreen for iframe element immediately responsive to user input (e.g., keyboard input) without having to manually click when fullscreen to get the fullscreen responsive (think of ...
Francis Mike Nathan's user avatar
0 votes
0 answers
53 views

I tried running my Android application on newer SDK versions (like API 35), and I noticed that the app is now displaying in full screen — even drawing content under the system status bar. Previously, ...
Rohan Pande's user avatar
0 votes
1 answer
245 views

I am attempting to cover the entire screen (iPad and iPhone) while using a TabView, but there always remains the bottom strip that is not covered. struct CoverTestApp: App { var body: some Scene { ...
Pete's user avatar
  • 213
0 votes
0 answers
43 views

I’m developing a React Native Expo app that must run in landscape mode (enforced using expo-screen-orientation). The app includes popup modals with input fields (e.g., for entering an IP address, PIN, ...
Srighakollapu Subrahmanyam's user avatar
0 votes
2 answers
176 views

I want my program to be full screen so I use the following line of code in constructor of my frame class: static GraphicsDevice device = GraphicsEnvironment.getLocalGraphicsEnvironment()....
Yash's user avatar
  • 21
0 votes
0 answers
59 views

I'm working with the Fullscreen API and have run into an issue on Safari. My code: import { useState } from "react"; export default function App() { const [fullScreenId, setFullScreenId] =...
Harrol's user avatar
  • 1
0 votes
1 answer
62 views

I'm using SDL which reads the operating system input. There is no special message for alt + enter, and so whereas the window gets special message from combinations of keys (such as alt + f4), alt + ...
Zebrafish's user avatar
  • 16.3k
1 vote
2 answers
117 views

I'm trying to create this website of this indie game studio I'm a part of and right now I'm having trouble getting this image to cover the whole page and make it the background. I've tried different ...
Branden Richards's user avatar
0 votes
1 answer
139 views

I have a simple web application to display media files (images as well as videos). By default, the application uses part of the screen for controls and the rest for display of the media files. One of ...
FDavidov's user avatar
  • 3,755
1 vote
0 answers
48 views

The gallery only opens in the section area and does not occupy the entire screen. You can continue scrolling through the page even if it is in full screen mode. <!DOCTYPE html> <html lang="es"...
Genaro Olguín Delgadillo's user avatar
0 votes
0 answers
58 views

I have a dashboard that updates every 5 seconds, and it's displayed on a TV. I implemented a fullscreen toggle button using JavaScript, but every time the page refreshes or the content updates (using ...
Carlos Machado's user avatar
0 votes
0 answers
137 views

I am trying to build a Fullscreen Popup composable that shows the given content completely full screen while also hiding the system bars. Like an image or document viewer. Right now it seems to be ...
Erik Schaumlöffel's user avatar
-1 votes
1 answer
119 views

I'm trying to open Windows Explorer using Google Apps Script. I'm not looking for a specific folder or anything, just to open. I run my Google Sheet in full screen mode and don't have the Windows ...
melrin's user avatar
  • 3
0 votes
1 answer
48 views

In the past, I have always used override func draw(_ dirtyRect: NSRect) to draw my NSViews. Since drawing in layers with wantsLayer = true makes some things easier and uses less power according to ...
Lego Esprit's user avatar
0 votes
3 answers
200 views

I have 2 views: import SwiftUI struct SwiftUIView: View { var body: some View { NavigationStack { ... //show SwiftUIView2 } .toolbar { ... }...
Gargo's user avatar
  • 1,379
0 votes
0 answers
85 views

I wrote an app in Kotlin that overlays a black color over the entire screen. The app works, however I can still see the top and bottom status bars. I tried to make it full screen by adding these lines ...
Nikolaos Beratlis's user avatar
0 votes
0 answers
30 views

My application is using Qt5.14 single QMainWIndow. I am on X11 Debian based Linux. I need to make App window fullscreen but multimonitors must be supported and fullscreen means cover all monitors and ...
nckm's user avatar
  • 123
1 vote
1 answer
71 views

I've had a few suggestions on SO regarding Full Screen for a Java app, and the most-offered suggestion is to simply create a second JFrame into which the app's main content can be moved. In theory, ...
Willicious's user avatar
0 votes
0 answers
41 views

I'm attempting to implement a Full Screen option in my Java app (user request). I've tried this: private void toggleFullScreen() { dispose(); setUndecorated(true); setExtendedState(MAXIMIZED_BOTH); ...
Willicious's user avatar
4 votes
1 answer
126 views

Expectation: It'll be easy to implement a Full Screen mode for my Java app (a fork of an existing app, for which the code is extensive and can be very difficult to work with). All I need to do is ...
Willicious's user avatar
0 votes
1 answer
78 views

import SwiftUI import Combine struct ContentView: View { @State private var activityTimer: Cancellable? @State private var activityCountDownInterval: TimeInterval = 3 @State private var ...
Mark's user avatar
  • 18.4k
0 votes
0 answers
74 views

I have a PWA with "display": "standalone" in the manifest. When users watch videos in fullscreen mode on (iOS), the device goes to sleep after a while, even if the video is still ...
P.Pascarella's user avatar
0 votes
0 answers
62 views

When I tried to get into full screen mode with keybinds disabled with JavaScript, I had to use navigator.keyboard.lock(). So that's what I did (w/o Live Server) and everything worked just fine. But ...
winikol's user avatar
  • 11
2 votes
1 answer
136 views

I'd like to make my application resizable. I want to resize all child elements and its font size and images depending on the height and width. I followed the instructions on the following page: Bond ...
Billie's user avatar
  • 357
1 vote
1 answer
119 views

I am currently making an options menu for my game and obviously one of the settings is to make a fullscreen. I want to have it so that when you click for it to be fullscreen, and it toggles on, and ...
DaGoldenGam3r's user avatar
3 votes
1 answer
207 views

When creating a GPU-accelerated window, Nvidia's GeForce Experience likes to inject its overlay and notify users of this: Is there a way to automatically indicate to this software that your program ...
orlp's user avatar
  • 119k
0 votes
0 answers
82 views

I'm using Cordova's InAppBrowser plugin to display a webpage within my app, and I want the InAppBrowser to cover the entire screen, including the status bar, for a truly fullscreen experience in ...
Aniketh keshava's user avatar
1 vote
1 answer
35 views

Just as the title says. When putting the swf in fullscreen it smooths the graphics (not sure what method it is using, perhaps anti-aliasing?) and I can not find anything online that is in any way ...
Koden's user avatar
  • 41
0 votes
1 answer
345 views

I am working on a project that requires displaying a video in fullscreen mode within an iframe. I want to add a watermark on the video that remains fixed in the center even when fullscreen is ...
Fawzey Hassan's user avatar
0 votes
1 answer
169 views

Black space at the top. I'm working on an intro page for my Flutter app using the Scaffold widget and I wanted to hide the tab views, but I'm encountering an issue with the background color not ...
Jonathan Getachew's user avatar
0 votes
1 answer
66 views

I use this way to hide hideSystemBar In general, it works fine,SystemBar will auto hide But,after soft keyboard show,SystemBar can't hide private void hideSystemBar() { ...
SwitchDestiny's user avatar
1 vote
0 answers
56 views

my code is: from tkinter import * import tkinter as tk def minimize_window(): root2.iconify() def exit_fullscreen(): root2.destroy() def new_root(): global root2, time_label ...
SHEETAH's user avatar
  • 11
3 votes
2 answers
1k views

I have a web page that I would like to display on mobile (potentially also desktop) in fullscreen or standalone without any browser controls - like address bar and back/refresh/etc buttons. What is ...
Adrian Silvescu's user avatar
0 votes
1 answer
47 views

I have Windows code where I put my app into fullscreen mode. Part of that involves auto-hiding the app bar when entering the mode and restoring the state of the app bar when exiting the mode. However, ...
RDH's user avatar
  • 49
1 vote
1 answer
624 views

I'm trying to run a Flutter app in kiosk mode on a Raspberry Pi 4B, but I'm having trouble getting it to launch in full-screen mode. I've followed the instructions from the Raspberry Pi Kiosk Mode ...
Shubham Mogarkar's user avatar
-1 votes
1 answer
198 views

I need to add a fullscreen blurred background to the dialog. but I'm unable to hide the status bar or draw beneath it. How should I resolve this? Here's the code: Dialog( onDismissRequest = ...
rocker wang's user avatar
3 votes
0 answers
966 views

I tried to make a modal like a dynamic island which displays errors and messages. When I tried to display the react native expo app in full screen by hiding the statusbar, the content of the statusbar ...
Hypercodez's user avatar
0 votes
1 answer
126 views

Apple released some new SwiftUI modifiers for ScrollView in iOS 17 that allow for paginated scrolling, but I need something that will work in iOS 15 and later.
wristbands's user avatar
  • 1,427
1 vote
1 answer
146 views

I'm implementing a application in a web browser that has a button to toggle full screen using the Fullscreen Browser API. I had assumed that I could .then() the promise returned by requestFullscreen() ...
Bob Gilmore's user avatar
1 vote
0 answers
170 views

I have a very simple DirectX 11 window, it renders correctly in windowed mode and is capable of switching to a Fullscreen Optimised (FSO) swapchain without issue. This is achieved via DXGI and ...
Tim Kane's user avatar
  • 2,789
1 vote
1 answer
243 views

I want to create a Flutter app with the following layout: A column with two children: At the top, a video player (chewie) at the correct aspect ratio Below, a webview covering the remaining space I ...
Nearchos's user avatar
  • 183
0 votes
1 answer
2k views

I can't figure out how to Fullscreen my embedded ruffle player on Google sites. For background, I am trying to make a personal unblocked games website for me to play flash games at school because all ...
Shane Mckinney Cavin's user avatar
3 votes
2 answers
262 views

I created a function that toggles the window between normal mode and full screen. If the width parameter equals 0, the window will be in full screen mode. Otherwise, it will be in the normal screen ...
M 027's user avatar
  • 339
0 votes
0 answers
64 views

I'm creating a website in html, css and js that has a fullscreen function. Within this website I have a navigation bar that is changing the content displayed with innerHTML. The issue I'm facing is ...
Linnéa Andersson's user avatar
0 votes
0 answers
256 views

I use Shell for navigation between pages. There are two pages, the details page and the video page. The details page will navigate to the video page. In addition to the MediaElement, the video page ...
chene's user avatar
  • 1
0 votes
1 answer
605 views

I have doing my project and use MaterialReactTable. There are features in it. Toggle Full Screen is also in it where all table show in full screen. I also have my website Header. I want to show Header ...
Hamza Qadir's user avatar
0 votes
1 answer
559 views

Excuse me, I'm new to Flutter and I'm creating an application that needs to utilize fullscreen mode but also be able to exit it. The only issue with my code is that it forces fullscreen mode at all ...
Joan Manuel De La Cruz's user avatar

1
2 3 4 5
70