Skip to content

Commit 6a73472

Browse files
committedNov 22, 2024
Fix tabbar avoiding keyboard
1 parent 63ea4ae commit 6a73472

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎App/IcySkyApp.swift

+2-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ struct IcySkyApp: App {
5656
isAUthPresented = true
5757
}
5858
}
59-
.ignoresSafeArea(.keyboard, edges: .all)
6059
.scrollDisabled(router.selectedTabPath.isEmpty == false)
6160
.scrollTargetBehavior(.viewAligned)
6261
.scrollPosition(id: $router.selectedTab)
@@ -86,10 +85,12 @@ struct IcySkyApp: App {
8685
if client != nil {
8786
TabBarView()
8887
.environment(router)
88+
.ignoresSafeArea(.keyboard)
8989
}
9090
}
9191
}
9292
)
93+
.ignoresSafeArea(.keyboard, edges: .all)
9394
}
9495
}
9596

0 commit comments

Comments
 (0)