File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Samples/Browse building floors Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,6 @@ struct BrowseBuildingFloorsView: View {
4848 withAnimation { attributionBarHeight = height }
4949 }
5050 . errorAlert ( presentingError: $error)
51- . ignoresSafeArea ( . keyboard, edges: . bottom)
5251 . overlay ( alignment: . bottomTrailing) {
5352 if isMapLoaded,
5453 let floorManager = map. floorManager {
Original file line number Diff line number Diff line change @@ -34,6 +34,9 @@ struct SampleLink: View {
3434 NavigationLink {
3535 SampleDetailView ( sample: sample)
3636 . id ( sample. name)
37+ // Workaround for bug that causes a map view to jump to the bottom
38+ // of its map when a keyboard is presented in landscape mode.
39+ . ignoresSafeArea ( . keyboard, edges: . bottom)
3740 } label: {
3841 SampleRow (
3942 name: sample. name. boldingFirstOccurrence ( of: textToBold) ,
You can’t perform that action at this time.
0 commit comments