57,463 questions
-2
votes
0
answers
21
views
How can I mock 1000 users interacting with ui for loadtesting [closed]
I need to validate a real world scenario as how my application behaves with 1000 users with my UI application pod.
I’m trying to mock a scenario where starting with 100 users I’m planning to increase ...
-1
votes
0
answers
45
views
Tab Bar UI Appearance backgroundColor = .clear still shows light grey background in iOS 26 (Flutter + Swift) [closed]
As I'm starting to code my app using Flutter in VS Code with Xcode Simulator, and I'm trying to nail down the look of my menu bar to be native to iOS 26's Liquid Glass UI. However, I'm unable to ...
-4
votes
0
answers
47
views
is the any tips or triks to build a pro app with flutter with the best and beauttifull ui/ux? [closed]
I am stuck on one design and I want to be creative in developing applications in Flutter with a pro ui/ux on ios and android (specialy android)
I have tried many AI tools, but this is not enough , ...
0
votes
1
answer
94
views
How to add a border to tkinter frame?
so I'm a bit of a beginner in python and wanted to make a GUI for a script I'm using to make it easier. For the data input I created a frame in which I placed the filedialog button etc., and ...
0
votes
0
answers
81
views
How do I completely remove the border from a Tkinter Button with an image on macOS?
I’m building a flashcard app with Tkinter in Python on macOS (macOS 26 + Python 3.13). I’m trying to make an x_button that shows only an image without any border, background, or focus ring.
Here’s a ...
-1
votes
1
answer
54
views
VSCode Showing line Errors [closed]
VS Code is showing underline characters under certain keys in my Json files.
I already disabled all my extensions and reviewed my configurations, but I don't have any clue why.
Here I have a ...
-1
votes
0
answers
94
views
Python tkinter GUI "show message" doesn't show up. Whenever i run this script, it doesn't show the "show message button" like supposed to in the code [closed]
Here is the code:
import tkinter as tk
class MyGUI:
def __init__(self):
self.root = tk.Tk()
self.label = tk.Label(self.root, text="Your message", font=("...
1
vote
0
answers
112
views
I want to recreate these curves using Flutter
I’m new to Flutter and trying to replicate a design that has curved shapes with categories displayed along the curve .
I’ve tried using ClipPath, but I haven’t been able to get the bottom arc to match ...
2
votes
1
answer
82
views
What does Expanded widget change do to change the constraints?
I have the following code
Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
TableHeadView(tablename: name, key: ValueKey(name + 'head')),
Expanded(
child: ...
0
votes
1
answer
42
views
How do I pass through the click on a GtkEditableLabel to the GtkColumnView row containing it?
I have a Gtk.ColumnView where cells are represented by Gtk.EditableLabels. Keyboard navigation works fine, clicking in the cells to edit them works fine, tab navigation
works fine.
However, clicking ...
0
votes
0
answers
51
views
<input type="range"> can't be dragged in Chrome [duplicate]
Sometimes in Chrome dragging the <input type="range"> slider doesn't work, the slider freezes.
I figured out that this happens when that DOM element is selected by the user, which ...
1
vote
0
answers
41
views
Is it possible to assign AutomationID to elements of an already assembled application?
I have a compiled application that does not contain any AutomationIDs for its elements, and I do not have access to the source code for this application.
Is it possible to assign AutomationIDs to ...
0
votes
0
answers
50
views
How to use pdf.worker.js locally in angular application
I am trying to render the pdf report in the Ui using angular 14. This working fine in some environments. But in some environments it is blocked by the firewall.
Currently it is loading the internet. ...
0
votes
1
answer
98
views
Toaster from shadn/Sonner it is not shown
I'm working in a Vue monorepo with a custom UI package. I want to use the Sonner toast component (vue-sonner v2) following the official shadcn-vue guide. I've set everything up without any import ...
-2
votes
1
answer
209
views
'translate' is deprecated and shouldn't be used. Use translateByVector3, translateByVector4, or translateByDouble instead
I have integrated zoom image logic on double tap here is full code
void _handleDoubleTap(Offset tapPosition) {
if (_isZoomed) {
_transformationController.value = Matrix4.identity();
...