40,664 questions
0
votes
0
answers
32
views
SwiftUI Button does not respect frame height limit and reaches into SafeArea [duplicate]
This is the stripped down version of a view I have in my project:
struct MyView: View {
var body: some View {
let buttonHeigth = CGFloat(40)
...
1
vote
1
answer
45
views
Button with GlassProminentButtonStyle without the text effect
On my macOS application, I have buttons with the new `GlassProminentButtonStyle` button style applied.
The issue is that the icon and text are barely readable inside the button even with the proper ...
0
votes
1
answer
75
views
Jetpack Compose: Bottom button moves up with keyboard, want it scrollable instead of resized
I am building a screen using Jetpack Compose with Scaffold, Surface, and ConstraintLayout.
The screen has a BasicTextField in the center and a Continue button fixed at the bottom.
When I tap on the ...
1
vote
3
answers
97
views
How to differentiate context for a clipboard button in a dynamic DataTemplate?
(Solution at end)
I'm trying to implement a simple clipboard functionality in a section of my datagrid template, so that I can copy the contents of that cell with a single click, however, since this ...
2
votes
1
answer
76
views
Bind buttons iteratively in tkinter? [duplicate]
I'm currently trying to create buttons in Tkinter dynamically, each button should have a copy_url() function assigned to it, and when clicked, the button should copy the url of the image that's ...
0
votes
1
answer
70
views
Custom bullet indentation and inline trailing button on the first line [closed]
Problem Description
I'm implementing a custom bullet-style text list. As shown in the image below, the "More" button should naturally follow the text on the first line, and the custom bullet ...
0
votes
0
answers
70
views
Text is not visible when the button is in disabled state
I'm encountering a weird behavior on iOS 26. I have a simple Liquid Glass button on a view.
struct ContentView: View {
@State private var isSheetVisible: Bool = false
@State private var text: ...
2
votes
1
answer
81
views
How to get HTML button to display horizontally on mobile
screenshot of mobile
We are currently using a website platform that is very limited so we resorted to using an HTML button which was working great until we realized how it was displaying on mobile.
...
0
votes
1
answer
62
views
Why is this GTK+ C++ program not showing a button with a black rectangular box boundary as expected?
I have the following HDSentinel.cpp program designed to run under the GTK+ library environment. I had a simple Hello.cpp program that I tried to adapt so that the "Hello World" button would ...
1
vote
3
answers
146
views
QML Listview - Button text is not displayed in the first row
I have a very simple QML application with a ListView. The ListView contains a Rectangle (for styling) and a RowLayout. The RowLayout contains a Button and a Text. The text of the Text is shown, but ...
Advice
0
votes
2
replies
43
views
In qualtrics survey: make another question (that is just text) to a popup which appears on click (without using Javascript)
I have a question everyone sees that is like this:
Click if you want to know more on
<button onclick="alert('Display the question QID9')">topic A</button>
or
<button onclick=&...
1
vote
2
answers
84
views
Buttons of irregular shape in QML
I need to make a collection of buttons of irregular shape -- similar to a puzzle where each piece is a button. They do not overlap, do not necessarily cover the whole window and may have gaps. In ...
0
votes
1
answer
104
views
How to add a hover sound effect in ImGui
How do I take this sound effect:
menuSound.loadSound("hover_sound", "Audio/Sound/button_hover_sound1.wav", 0.5);
And have it so that when I hover over a ImGui button, it will play ...
Advice
0
votes
5
replies
73
views
How to localise submit buttons in HTML forms
I am building a multi-lingual website and want to localise the captions shown on buttons in a form.
<form action="check.php" method="post">
<input class="btn btn-...
-1
votes
1
answer
74
views
MS_Access Use buttons to filter Subform
I am building a visual organizer for a bookcase in MS Access.
I have a main form with a grid of buttons (representing locations like "A1", "B3", "D1"). On the right side, ...