Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
61 views

I am working on a program which has both a TUI (terminal user interface) as well as a GUI (graphical user interface). The program has some functions which take quite a long time to complete (waiting ...
Whirvis's user avatar
  • 356
0 votes
0 answers
34 views

I am trying to make a simple app tabbar where the selected tab is highlighted with a pill highlight image. The image works but as you can see in the image the bottom of the pill is cutoff. import { ...
reptarkid's user avatar
1 vote
1 answer
45 views

I have the following function to be able to resize the first two columns of a table in PySide6 while keeping the third the same size since it contains a combobox and keeps the ratios they get of the ...
Tar-Eruntalion's user avatar
0 votes
1 answer
78 views

How to call an API on before unload event in react, I have tried fetch with Keepalive true & sendbecon(doesn't support authorization headers in headers) Also, I want to show dialog box with custom ...
user9150771's user avatar
0 votes
0 answers
27 views

I have this code with an upload image button and an image label. import tkinter from tkinter import filedialog, Label, Button from PIL import Image, ImageTk # Functions def upload_image(): ...
Aadvik's user avatar
  • 1,522
0 votes
0 answers
60 views

I hope you are doing well. I have developed main suitelet script to embed another suitelet in an iframe. Child suitelet contains date and dropdown field. When I execute the main suitelet, I can see ...
Maira S's user avatar
  • 121
0 votes
1 answer
54 views

I am trying to create a list of cards representing categories and I opted to use a custom widget instead of the provided Card widget so I can use images and apply rounded borders to them and I found ...
Sh00tthem's user avatar
1 vote
1 answer
58 views

topBar = { TopAppBar( title = { Text("Norm Calculator") }, actions = { IconButton(onClick = onThemeToggle) { Icon( ...
Maj mac's user avatar
  • 61
0 votes
1 answer
40 views

I’m trying to implement a collapsible section in a List on watchOS (watchOS 10+). The goal is to have a disclosure chevron that toggles a section open/closed with animation, similar to DisclosureGroup ...
Richard D's user avatar
  • 5,760
0 votes
2 answers
172 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
1 answer
208 views

I will provide a self answer to this question, it has been bugging me for years and I only recently found out the solution so I suspect that other people have encountered the same issue. Q: Is it ...
AccidentalTaylorExpansion's user avatar
0 votes
0 answers
68 views

I have noticed Adobe Photoshop CS5 draws Windows caption buttons in a very unusual way: The buttons are not the standard Aero caption buttons (), since they are not at the top of the window, are ...
IS4's user avatar
  • 13.5k
0 votes
1 answer
55 views

I have a button function that uses filedialog.askopenfilename to read data from xls, xlsx, dpt, xy, and txt file types into a pandas dataframe. When I use the button and open anything other than xls ...
TPoirier's user avatar
2 votes
2 answers
105 views

I'm trying to build a pixel-perfect design in Flutter that includes a TextField. The design requires the label to behave like this: When the TextField is not focused and empty, the label should ...
Muzahidul Islam's user avatar
1 vote
1 answer
29 views

In the minimum application example below the inserted ui appears with fade oppacity (css class .recalculating) library(shiny) # Define UI ui <- fluidPage( # this is where the UI will be inserted ...
sbenateau's user avatar
0 votes
1 answer
40 views

I have a c# app that creates a custom addin for SolidWorks. The addin is a taskpane using the Property Manager Page. I am able to add controls to my groups, but I don't see any way to change the ...
curiousGal's user avatar
0 votes
0 answers
33 views

I want to accomplish the following navigations in an Android app written in .net maui. I don't know if I'm using the right approach to navigation and therefore I'm asking for help because: the back ...
Morv's user avatar
  • 420
0 votes
1 answer
58 views

General overview I try to set just a minimal taskbar (like Polybar or i3bar, or any task bar you know). The constraint are the folowing ones: It should have a dedicate space to avoid overlaping with ...
fauve's user avatar
  • 321
0 votes
0 answers
35 views

I'm experimenting with the multilingual support in my Android application. Specifically, I want to support both LTR and RTL layouts. I created a basic test app where UI elements are absolutely ...
Rohan Pande's user avatar
3 votes
2 answers
226 views

I'm developing a Flutter app where I need to visually display data using charts. Specifically, I want to implement: A Pie Chart to represent proportions or percentages. A Line Chart to display trends ...
Navya Narayanan's user avatar
0 votes
0 answers
54 views

I have a grafana server and I am using business forms to make interfaces for others to use to add data to databases. I have a form with a combination of text, radio buttons, and select (dropdown). ...
onering20's user avatar
-4 votes
1 answer
158 views

I'm a bit rusty with UML and unsure if my class diagram effectively represents the architecture of my Unity system. Goal: I'd like the diagram to clearly show how GUI elements get updated through a ...
Andrea Cumino's user avatar
0 votes
0 answers
43 views

I'm using ViewPager2 with Fragment to load content. The ViewPager2 uses an adapter that is a subclass of FragmentStateAdapter. After rotating the screen orientation, the ViewPager2 ends up stuck ...
Chance Jason's user avatar
2 votes
0 answers
87 views

I'm designing a UI in JavaFx and I'm using Scene Builder to do so, but I can't move any elements with precision due to the uncontrollable "snapping" of moving elements in scene builder which ...
Louie's user avatar
  • 21
2 votes
0 answers
192 views

I'm using Angular v17, Taiga UI v4 and Chrome browser. I copied example from Taiga UI documentation to my code to create a very simple select/dropdown component. The problem is, no matter which ...
Aleksandra's user avatar