12,136 questions
0
votes
1
answer
91
views
Button press result not appearing in the frame intended
Project contains 3 files
main.py
from customtkinter import *
import tkinter as tk
from tkinter import ttk
from include.frame_select import FrameSelect
from include.frame_main import FrameMain
window = ...
Advice
0
votes
2
replies
91
views
Screenshot a specific widget in tkinter
Is there a more accurate way to screenshot like a specific tkinter widget besides just calculating their coordinates, because it sometimes screenshots outside the window itself.
Heres my code:
def ...
-4
votes
0
answers
84
views
Django bug - Dual display of the CheckboxSelectMultiple widget label - minimal reproducible example? [closed]
forms.py
class LegacyForm(forms.ModelForm):
class Meta:
model = Legacy
fields = [
'app_should_include',
]
app_should_include = forms.MultipleChoiceField(
...
1
vote
1
answer
95
views
How to display FlutterMap inside custom shape image without black background?
I’m building a Flutter app where I want to show a FlutterMap inside a custom PNG shape (similar to a masked frame).
My goal:
Display FlutterMap only inside a custom shape image
Outside area should ...
4
votes
0
answers
106
views
SwiftUI .onOpenURL not called every time when opening app from Widget using Link(destination:)
I am opening my app from a Widget using a custom URL scheme.
The app does open every time, but .onOpenURL is not called consistently — sometimes it fires, sometimes it does not.
Widget code
Link(...
1
vote
1
answer
112
views
WidgetKit Image becomes gray when widget is not primary / inactive
I’m working with WidgetKit for the first time.
My widget works as expected, but I’m facing an issue with how it renders when it’s not the primary widget.
My widget mainly displays a large image.
When ...
0
votes
1
answer
140
views
Flutter widget shows last video frame when switching between image and video
I have a Flutter app that plays videos one after another. Sometimes, I also show slides (PNG images) between videos.
When the sequence is video → video → video, everything works fine.
But when the ...
1
vote
0
answers
231
views
iOS 26 adds unwanted outline to transparent Scriptable widget
I'm trying to create an "invisible" widget using Scriptable on iOS 26. The goal is for it to blend seamlessly into the home screen background.
However, iOS seems to add a subtle 1–2 pixel ...
0
votes
0
answers
96
views
How to stop Databricks retaining widget selection between runs?
I have a Python notebook in Databricks. Within it I have a multiselect widget, which is defined like this:
widget_values = spark.sql(f'''
SELECT my_column
FROM my_table
GROUP BY ...
1
vote
0
answers
147
views
Custom ProgressView in a SwiftUI widget
I’m trying to add a linear ProgressView to a SwiftUI Widget that counts up over time and uses a LinearGradient instead of a solid color for the progress bar.
First I tried using the built-in ...
0
votes
0
answers
94
views
iOS Live Activities + multi-phase timers (Pomodoro / boxing rounds) without push notifications – is proper sync even possible?
iOS Live Activities + multi-phase timers (Pomodoro / boxing rounds) without push notifications – is proper sync even possible?
Hey everyone 👋
I’m building a Pomodoro timer and a boxing/round timer in ...
0
votes
0
answers
34
views
FilamentPHP v4 Method App\Filament\Widgets\ListUsers::getCachedSubNavigation does not exist
I created a custom page, and I added a table widget to it.
<?php
namespace App\Filament\Pages;
use App\Filament\Widgets\ListUsers;
use Filament\Pages\Page;
class Users extends Page
{
...
0
votes
0
answers
76
views
Cloud Monitoring Dashboard widget loses the "legendTemplate" JSON setting when re-editing
I've successfully added a static legend template to the JSON of a widget like so:
{
"xyChart": {
"dataSets": [
{
"timeSeriesQuery": {
"...
0
votes
1
answer
118
views
Slicing pandas dataframe with a value from a Jupyter widget raises an error
In a Jupyter Notebook, I make use of a Jupyter Widget to interact with a function.
The widget gives me a dropdown that can cycle through some plots, and its options are retrieved from a dataframe.
...
0
votes
0
answers
93
views
Android Homescreen Widget updating unexpectedly
I have developed a homescreen widget (for personal use only) on my Samsung Android phone.
It is a clock widget but with an extra large font (the whole reason for developing this as the stock widget's ...