Questions tagged [screen]

A screen on a device, such as an iPhone or other smartphone. For questions about GNU Screen (the terminal application for managing multiple windows), use the gnu-screen tag.

A screen on a device, such as an iPhone or another smartphone.

For questions about GNU Screen (the terminal application for managing multiple windows), use the tag.

4773 questions
1
vote
2 answers

Update Text in SwiftUI while process is still running

I like to update a text on the screen to inform the user about the progress. I'm using Text in SwiftUI. Whenever I change this message, it should be updated, even if the process is still running. E.g: @State private var message = "-" var body:…
Peter71
  • 2,180
  • 4
  • 20
  • 33
1
vote
1 answer

Kivy Dropdown and how to insert corresponding data below the chosen menu in dropdown

I need help. Python is almost new for me, my initial training was in December. I made an application in pure python, based on different data (mainly astronomical). It works great with my android phone, but the presentation is not really user…
Frédéric
  • 13
  • 2
1
vote
0 answers

Adding Launch Screen Removes Autosizing

Since Apple is requiring a storyboard launch screen in a few months I went ahead and tried to add one. Adding one is simple and it works just fine but it screws up the layout after loading the app. No longer does a larger screen automatically adjust…
landfill
  • 41
  • 2
1
vote
0 answers

button inside MDNavigationDrawer is not changing screen on release

In my MDNavigationDrawer I put a button from which I want to change to a new screen 'About Us' but on the click, it is not responding The button is inside root widget of ContentNavigationDrawer in .kv file and I want to switch screen in AboutUs…
Vinz
  • 255
  • 1
  • 9
1
vote
1 answer

SWIFTUI How to capture VStack height with geometry (after the VStack was displayed)?

I'd like to ask you some help. I'm trying to capture VStack height using geometry and then based on that VStack height value, calculate its child element's height (inside VStack). Image of my current view of VStack I used .frame outside of VStack to…
Linas
  • 65
  • 1
  • 7
1
vote
0 answers

Calculate viewport dimensions and pixel ratio of latest devices for Chrome Devtools?

I am wondering if their is some way to get the viewport dimensions and pixel ratio for the latest AND upcoming devices so that I can add those devices into Chrome Devtools for emulation. As developers, I believe it is very important for us to make…
Devashish
  • 1,260
  • 1
  • 10
  • 21
1
vote
1 answer

Can i use LayoutInflater.inflate() to open a new screen

I am relatively new to android, i need to open a new screen when a button is clicked. As i checked the posts here they suggest using setContentView() or using an Intent. In case 2 a new the screen is opened as a new Activity, as i dont want this to…
Deepak
  • 1,238
  • 3
  • 22
  • 47
1
vote
0 answers

Adding different header buttons for different screens in react-native nested navigators

I have created a new react-native app using expo and using the tab-bar template. This creates a new app which contains a stack navigator which in turn contains a tab navigator. Pretty much as they explain in Nesting navigators. So it looks like…
user826955
  • 3,137
  • 2
  • 30
  • 71
1
vote
2 answers

How can I stretch everything in my window when window is maximized in wpf?

I have got my main wingow with ribbon tabs and a datagrid. How can I maximize everythin in the window when window is maximized to fit the screen?I am trying to use viewbox but its not working.
CPM
  • 855
  • 3
  • 12
  • 14
1
vote
1 answer

Android ViewFlipper measures of undisplayed child

I have a ViewFlipper on my main Activity's View. At onCreate I instante Views which are added to ViewFlipper. After that I set displayed child to first one. And when a button is clicked I switch ViewFlipper's display child to second view. Right…
zmeda
  • 2,909
  • 9
  • 36
  • 56
1
vote
0 answers

Open a popup menu on another screen, on MacOS

Working on MacOS, I need to open a popup menu from my window, but to be able to open the popup in another screen (than the window). We are now using performClickWithFrame to open the popup, but it seems that if the popup location and the window view…
Osher88
  • 11
  • 1
1
vote
2 answers

adding two Values in two kivy screens and getting the result

I'm trying to build an app that can calculate the sum of two values. I have a screen called Therdwindow that has three text input widgets. from kivy.app import App from kivy.app import App from kivy.uix.label import Label from kivy.uix.floatlayout…
jan
  • 33
  • 8
1
vote
3 answers

Scale a ImageButton

I have an app that have an activity with 3 imagebutton and a banner ad below. Something like this... The ImageButton layout sizes are wrap-content, and each source is a png that i've made. Now, when i've tested in a small screen the bottom one is…
1
vote
1 answer

How to make a Winforms App Perspective and Responsive, like a web page?

How to make a Windows Forms App to be perspective , in order to make it to be like a web page where all the elements are resizable ? I mean that it should fill in all screen sizes , laptops and desktops. I have tried everything but none is working…
LopDev
  • 823
  • 10
  • 26
1
vote
1 answer

How to hide a div between two sizes in CSS

I stuck to hide div between two screen size. like I want to hide div between screen sizes 550px - 910px with the following media query. @media only screen and (min-width: 550px) - (max-width: 900px) { .bsp_big-image{ display: none…
Upasana Chauhan
  • 948
  • 1
  • 11
  • 32
1 2 3
99
100