Skip to content

Commit

Permalink
FIX: Value
Browse files Browse the repository at this point in the history
  • Loading branch information
Mercen-Lee committed Oct 16, 2023
1 parent 0de0e81 commit 99aa98d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/OpenTDS/Foundation/Extensions/ViewExt.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import SwiftUI
public extension View {

@ViewBuilder func tossTabViewBottomPadding() -> some View {
GeometryReader { proxy in
self.padding(.bottom, proxy.safeAreaInsets.bottom <= 20 ? 43 : 56)
GeometryReader { geometry in
self.padding(.bottom, geometry.safeAreaInsets.bottom <= 20 ? 62 : 49)
}
}

Expand Down

0 comments on commit 99aa98d

Please sign in to comment.