57,434 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
Advice
0
votes
3
replies
46
views
What is the most memory-efficient UI artefact to display a "Critical Out of Memory (OOM)" alert in Android?
I am looking for a way to display a "Critical Memory" warning to the user when application reaches "Out of Memory' (OOM) state.
When app reaches the OOM state, the Java heap is ...
Best practices
0
votes
2
replies
44
views
How do you create video feeds with poster in Kotlin Multiplatform?
I’m developing a Kotlin Multiplatform application using Compose Multiplatform. I’m consuming an API that returns a list of images and videos, and for each video I want to display a static poster image ...
-3
votes
1
answer
81
views
How to apply a background outside a rounded view’s corner radius? [closed]
I’m learning how to build a Toast notification for an iOS app using SwiftUI.
I can’t figure out how to draw a background outside the rounded view — specifically, I need a colored sidebar behind the ...
Best practices
0
votes
15
replies
87
views
Filling JTable with initialized columns
Suppose you have a JTable (which may or may not have any rows) with already added columns of a custom type.
JTable table = new JTable(); // actually, a custom JTable type, but it's not the ...
-3
votes
0
answers
86
views
how to make circular button with transparent background using CustomTkinter? [closed]
I am making an alarm using Python and MySQL integration for school project. I am using CustomTkinter to make UI
App UI
This is what I have reached so far.
I want to add a red circular icon with white ...
Best practices
0
votes
11
replies
50
views
Table layout adjusting insides of components
I want to display and configure multiple objects of the same class at the same time, while keeping up the good looks of a table. So: one line per entity, with multiple GUI elements per line for the ...
0
votes
0
answers
105
views
SwiftUI bottom sheet shows unexpected padding only on iPhone 17 Pro Max (iOS 18) — works fine on all other devices
I am using a .sheet in SwiftUI to show a bottom sheet with custom options.
The sheet is supposed to have zero padding on all sides (left, right, top, bottom) on every device.
It works correctly on:
...
0
votes
0
answers
47
views
Should the Result area in BaseX GUI 11.6 render the output from an XQuery Update?
I'm running XQuery Update from script in BaseX GUI 11.6. I've created a database and set WRITEBACK to TRUE, and the file updates as expected--i.e., when I open the input file from my file system, the ...
0
votes
1
answer
110
views
Rust Iced Markdown View isn't Showing in the window
I've tried the rust iced framework and tried to create a markdown view from the documentation and the code compiles and renderes the windows but the code
pub fn new() -> Self {
Self {
...
3
votes
2
answers
111
views
Korean Text word breaking problem in WinUI project
Korean text gets cut off in the middle of a word. The whole word should go to the next line.
<TextBlock
x:Name="IconButtonName"
Width="66"
Margin="2,2"
...
Best practices
0
votes
1
replies
91
views
Seeking for the best practice to add 'eye' option to secureField text box in swift
I'd like to add to my an option to expose the password value in my secure field textbox. Currently I'm doing it by rendering TextField if showPassword is on, and SecureField if it's off. However, the ...
Best practices
0
votes
4
replies
68
views
Is it acceptable to remove the H1 title from some pages?
I have received a request from some people in my organization to remove the titles on certain pages of a web application to save space (they hate scrolling down). I know this is not a good practice ...
0
votes
2
answers
160
views
Java Swing Invisible Image
Context:
I'm trying to make an app with java swing, however when trying to add a background to the Login Page, the image does not show up. It is there and moves other JComponents when adding a layout ...
Best practices
0
votes
0
replies
51
views
How to handle long text in a table-styled FlatList
I have this FlatList in React Native:
<FlatList
style={{ width: "100%"}}
data={cases}
ListHeaderComponent={
<View style={styles.listHeader}>
<Text ...
2
votes
1
answer
138
views
How do I make a matplotlib bar graph scale with the amount of items?
I am working on a small project and it is my first time using matplotlib, and I am struggling with how to make my bar graph look better with more inputs. The whole idea of the program is to read text ...