62 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
7
votes
0
answers
288
views
Keyboard safe area ignored after NavigationStack pop - iOS 18 app on iOS 26
I have an issue on iOS 26 with an app built with iOS 18. After a navigation stack pop, the keyboard safe area is not being taken into account which causes UI to be obscured.
This happens on App Store ...
2
votes
1
answer
126
views
Qt Quick QML: SafeArea not working on Android devices
I am trying to create a Qt Quick mobile application using SafeArea to restrict the location of contents on the screen. It works well on desktop, but when I run it on my mobile device the margins ...
1
vote
1
answer
3k
views
How to prevent iOS 26 WKWebView Liquid Glass toolbar from overlapping a fixed bottom tab switcher?
I’m testing my web app inside in-app WKWebViews (Discord, Telegram, custom apps, etc.) on iOS 26.x.
Apple introduced a new Liquid Glass floating toolbar at the bottom of webviews, and it overlaps my ...
0
votes
1
answer
68
views
Flutter Scaffold creates invisible Listener (402x62) at the top, blocking touch interactions — how to deal with it?
I'm building a Flutter layout using Scaffold. While inspecting the widget tree using the Widget Inspector, I noticed that an invisible Listener widget with size 402x62 appears at the top of the screen....
1
vote
1
answer
42
views
Flutter bottom sheet RenderFlex overflow when crossing SafeArea during height animation
I'm building a custom sliding comment panel in Flutter (like a bottom sheet).
It has 3 parts:
A drag handle at the top
A scrollable ListView for comments
A TextField at the bottom for user input
The ...
0
votes
0
answers
52
views
Safe Area Issue: Black Gaps Above/Below Content [duplicate]
I'm struggling with a SwiftUI app where I have black gaps at the top (status bar area) and bottom (home indicator area) of my screens.
My app uses a tabbed navigation structure with multiple screens. ...
-1
votes
1
answer
70
views
Flutter SafeArea not working in iOS WebClips
Flutter SafeArea not working in iOS WebClips (web apps launched stand alone from Home Screen).
MediaQuery.paddingOf(context).bottom
returns zero in safari mode and in stand alone mode.
0
votes
1
answer
98
views
Is it correct to insert Scaffold into SafeArea
import 'package:flutter/material.dart';
class Test extends StatelessWidget {
const Test({super.key});
@override
Widget build(BuildContext context) {
return SafeArea(
child: Scaffold(
...
1
vote
1
answer
505
views
.safeAreaInsets on ScrollView blocks touches in SwiftUI on iOS17
I am trying to add safe area to a ScrollView, but noticed that on iOS17 I am unable to tap any content inside the safe area of the ScrollView.
Example code:
ScrollView {
VStack {
ForEach(0....
1
vote
1
answer
164
views
How to set "safeAreaInset" under a condition (if clause)
I am a beginner in Swift and I know this must have something to do with the "." just before "safeAreaInset". But even with "self" it doesn't work.
I want to activate the &...
2
votes
1
answer
279
views
SwiftUI ScrollView cannot click content on custom defined safe area
On my app I have a floating button. Because I don't want that this button to obstruct contents, I placed it on .safeAreaInset(egde: bottom) { }. ScrollView handles this safe area, and allow user to ...
0
votes
0
answers
183
views
Swiping up from the bottom of the screen (to switch apps) unintentionally triggers another object's DragGesture in SwiftUI, iOS
This is about SwiftUI.
I have an object with a DragGesture attached to it and this object is positioned at the very bottom of the screen in iOS – just above the safe area with the app switcher handle. ...
1
vote
2
answers
400
views
Swiftui: Overlay - either rounded corners or
I would like to create a overlay at the bottom of the view that has rounded top corners and covers the safe area also. I tried
NavigationStack {
ScrollView {
LazyVGrid(columns: ...
3
votes
1
answer
2k
views
SwiftUI - TabView Safe Area
I have some fullscreen views that I want to be able to swipe between in a TabView, and I know that I can expand the whole TabView container outside the Safe Area using .ignoresSafeArea() however the ...
0
votes
1
answer
427
views
Add button on safeArea side in SwiftUI touch is not working
Add button on safeArea side in SwiftUI touch is not working, this button should be tapable.
struct ContentView: View {
var body: some View {
VStack(spacing: 0) {
HStack(spacing:...