diff --git a/app-ios/Sources/TimetableFeature/TimetableListView.swift b/app-ios/Sources/TimetableFeature/TimetableListView.swift index 4fedc86b6..3b020c3f2 100644 --- a/app-ios/Sources/TimetableFeature/TimetableListView.swift +++ b/app-ios/Sources/TimetableFeature/TimetableListView.swift @@ -103,8 +103,8 @@ struct TimetableListView: View { .onAppear { store.send(.view(.onAppear)) }.background(AssetColors.Surface.surface.swiftUIColor) - // bottom floating tabbar padding - Color.clear.padding(.bottom, 60) + + bottomTabBarPadding } } } @@ -154,8 +154,10 @@ struct TimetableGridView: View { } } } + .padding(.trailing) + + bottomTabBarPadding } - } } @@ -190,6 +192,11 @@ struct TimeGroupMiniList: View { } } +fileprivate var bottomTabBarPadding: some View { + // bottom floating tabbar padding + Color.clear.padding(.bottom, 60) +} + extension RoomType { func toRoom() -> TimetableRoom { switch self {