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

I am writing my UI unit test code with Junit 4.12 and PowerMock 1.6.5. I have a MyLayout which extends Vaadin 14 VerticalLayout and try to test it. When I create a new instance for MyLayout (new ...
Ask's user avatar
  • 11
0 votes
0 answers
18 views

I am a beginner with xflr5, and I am trying to simply edit my main wing after opening it from the plane editor box. I click on "foil" and am trying to input a value for "foil", but ...
AndyDufresne's user avatar
0 votes
1 answer
64 views

I am using this BarChart in flutter using fl_chart package here is the code class DailyUtilizationChart extends ConsumerWidget { const DailyUtilizationChart({super.key}); @override Widget build(...
Munsif Ali's user avatar
  • 7,907
0 votes
1 answer
43 views

I am using Provider in my application. I have designed a simple question-answering mechanism. My code suddenly stopped working even though I didn’t change anything. Could it be that I have reached the ...
Feyiz Oktay Aydır's user avatar
1 vote
1 answer
74 views

I want to create an Employee Manager UI for my desktop application to make it visually appealing and well-structured. So, I started by creating my first UserControl to function as a DataGridView, ...
Malik_Almrzwqy's user avatar
0 votes
0 answers
22 views

I am working on two scripts, one that works on a laptop and another that works on a rasberry pi. It should handle the main menu on the laptop, send it to the pi which decodes it and writes it to a csv....
user19018773's user avatar
1 vote
0 answers
203 views

ffmpeg's viewer, ffplay, has a lot of great options for optimizing viewing experience. I've been able to get it to nicely display an RTSP stream at low latency. However, it's been difficult to include ...
EthanL's user avatar
  • 11
1 vote
0 answers
79 views

I'm getting a strange problem. I recently converted a project from Mac to Windows and noticed some strange tkinter GUI issues that occur only on my Windows 11 platform, despite not changing python ...
ThisRandomEngineer's user avatar
0 votes
0 answers
55 views

I have a simple Python Win32 program that works well when run under pythonw from a command prompt. When I run it under python, it keeps running in the foreground of the command prompt and can e.g. ...
SRobertJames's user avatar
  • 9,367
0 votes
1 answer
144 views

I would like to add a separator line in between the entries of my text box but have not yet found a neat way of doing this. I would also gladly appreciate any further comments on my code any ways to ...
Paul Hinterbauer's user avatar
0 votes
2 answers
100 views

Making draggable items in LazyColumn. I have implemented the functionalities when drag after long press the IconButton. But what I want is drag immediately after start dragging. But simply changing ...
Surendra's user avatar
0 votes
0 answers
36 views

I have a requirement to show/ hide Menu(s) on the initial load of the Pega mobile application dynamically. Configuration: #1 WHEN rule on the Desired Menu rule to conidtionally show/ hide based on a ...
Vamsi Unique's user avatar
0 votes
0 answers
48 views

I am developing a GUI in QT CREATOR using a RaspBerryPi 5. This GUI runs normally on the raspberry I am developing, it opens normally like a regular software. However, when I try to run this same &...
matheusbrl's user avatar
0 votes
1 answer
76 views

I developed a simple app using Python Flet 0.21.2. The app consists into two main views: the 'Welcome' and the 'Login', each of them defined into separate classes. Routing occurs into the main() ...
eljamba's user avatar
  • 421
1 vote
0 answers
86 views

share sheet example Disabling android.permission.BIND_CHOOSER_TARGET_SERVICE From apps services isn't working. Share targets still appears in share sheet. So how to block them or remove the quick ...
GreenDotBlue's user avatar
1 vote
0 answers
60 views

I am developing an MRI file viewer app using dash and plotly. The way it works is I can select a specific MRI file from my dataset and the app will generate a slider that could take you through the ...
Malek kchaou's user avatar
0 votes
1 answer
52 views

I am trying to update the widget frame when I add a new folder to the users directory, but I am unsure how to implement that function. This is what I have so far.. How I add the current directory ...
marc's user avatar
  • 1
0 votes
1 answer
81 views

I have a CSS Element such as given below: <input type="search" /> And styling above element with below CSS: input[type="search"]::-webkit-search-cancel-button{ -webkit-...
KUNAL TIWARI's user avatar
0 votes
0 answers
32 views

How to handle a mobile tooltips when you want close tooltips and you click outside, and want to stopPropagation on other elements like navigation etc. const Overlay = () => ( <div ...
Jakub Kowolik's user avatar
1 vote
1 answer
93 views

I'm trying to create a Dynamic UI to inventory items around the shop. Right now I have a MainMenu JFrame Form which can either select elements from the JTree on the left or the JTextField on top. I ...
Victor Euan Jr's user avatar
0 votes
1 answer
95 views

I'm currently making an inventory display menu to manage tools around the shop easier. MainMenu (JFrame Form) I want to make a GUI that populates a JPanel in a JScrollPane with a premade JPanel Form ...
Victor Euan Jr's user avatar
1 vote
0 answers
51 views

class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return ChangeNotifierProvider( create: (context) => MyAppState(), ...
hograto's user avatar
  • 21
0 votes
0 answers
41 views

Tl;Dr - Clicking and dragging a GtkButton or other widget into a GtkFixed doesn't make that button or other widget a child of GtkFixed, it makes it a sibling, and it sits in front of GtkFixed when I ...
the_endian's user avatar
  • 2,567
2 votes
1 answer
87 views

When selecting an item in a QListWidget, it stays selected even after clicking on the blank space between the items. This doesn't feel natural, as i'd expect the items to deselect after clicking away ...
Ennol1's user avatar
  • 49
2 votes
2 answers
141 views

I believe I am witnessing a memory leak in the following Python code that calls OpenCV functions. Can you reproduce this? Why does this happen? How can I work around it or fix it? My environment: ...
user2268171's user avatar