1,686 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
Best practices
2
votes
1
replies
49
views
UI usage analytics dashboard
I’m creating UI dashboard which I want to measure things like
How many requests are made from the web application from a particular screen along with the organisation location of the user.
There are ...
Best practices
0
votes
3
replies
90
views
Is it allowed to ask "Sign in with Apple" users for their real email address if they chose "Hide My Email"?
I’m using Sign in with Apple in my iOS app.
When a user chooses "Hide My Email", I receive the @privaterelay.appleid.com relay address. For marketing reasons, I would prefer to have the user’s real ...
0
votes
0
answers
14
views
lightning-input of type date behaving strangely in lwr sites
I have the below lwc which I am planning to use inside lwr. But the behavior is different/strange. For example: when I am giving some wrong date like Nov 39, 2025. it automatically chooses the next ...
0
votes
1
answer
58
views
Cannot automatically highlight a navigation item in NavigationSplitView on iPad or visionOS
I am building an app using NavigationSplitView, when previewing on Mac I can simply use List(selection: $selected) to highlight an item by default. Whether the correct content or details panel is ...
1
vote
1
answer
94
views
React Native - Why don't buttons/interactions work when the virtual keyboard is open on mobile devices?
In my React Native code, I have a Text Input with a button, but the button does not work when the virtual keyboard of mobile devices are opened. The user is forced to tap out of the keyboard, and then ...
1
vote
0
answers
148
views
Rotate JWT token in Auth.js (Next Auth) before session expiration
I develop a Next.js app with Auth.js v5 security. I use jwt strategy for sessions
I'm trying to achieve lightweight authorization checks in my Next.js app by injecting user roles into JWT payload
...
0
votes
1
answer
37
views
How can I center a div both vertically and horizontally using CSS Flexbox?
I'm trying to design a responsive website layout and I need to center a div exactly in the middle of the page (both vertically and horizontally). I've tried using margin and position, but it doesn't ...
0
votes
1
answer
88
views
Sortablejs is slow on Chrome with large table (2000 records)
When my sortablejs has an table of 2000+ records it gets realy slow and the page gives me the option to wait or close tab.
But this table is used by clients(in need of an good UX) so this cant happen ...
-1
votes
1
answer
332
views
How do I generically skeletonize my SwiftUI views?
Suppose I have some view that is dependent on asynchronous data throughout my app. I want to create a "Placeholder" for that view, similar to Facebook, X, or other platforms, showing a ....
0
votes
0
answers
48
views
Should I rely on native HTML validations for progressive enhancement?
I'm working on a webassembly frontend and progressive enhancement is very important, since it's not that widely supported.
I'm trying to get it right, but I found out it's much harder than I expected. ...
1
vote
1
answer
73
views
How to scroll lazy column when soft keyboard is called?
I am trying to implement a chat function in my app. I am dealing with the elements being pushed upwards when the keyboard is called. Right now what seems to be working the closest to what I want is ...
0
votes
0
answers
22
views
Why does Keyboard.dismiss not work in App.js?
I created the following component in react-native:
import { TouchableWithoutFeedback, Keyboard } from "react-native";
export default function DismissKeyboard({ children }) {
return (
&...
0
votes
1
answer
264
views
How to Pre-fill Email Field on AWS Cognito Managed Login Page in Multi-Tenant SaaS?
In my multi-tenant SaaS application, I use AWS Cognito for authentication with a managed login page. Each tenant has a separate Cognito user pool. The authentication flow is as follows:
The user ...
1
vote
3
answers
114
views
laravel/vue design: different ways to handle a loader on a SPA while laravel is processing a job
It is a design question, and though I am a full stack dev, I am weaker on frontend UX stuff:
I am creating a laravel application with Inertia and Vue, where each user has portfolios. Portfolios rely ...
0
votes
0
answers
40
views
How to retain navigation stack in Flutter when user changes system theme?
I am using ThemeExtension class to add more custom light and dark theme colors to my app. However, when I navigate to another screen from the home screen and change the theme, the app comes back to ...