Skip to content

Commit

Permalink
Merge pull request #641 from shunsugawara/main
Browse files Browse the repository at this point in the history
  • Loading branch information
shin-usu authored Aug 20, 2024
2 parents 27442fd + 1c2d7ff commit a0a5cc0
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions app-ios/Sources/TimetableFeature/TimetableListView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
}
Expand Down Expand Up @@ -154,8 +154,10 @@ struct TimetableGridView: View {
}
}
}
.padding(.trailing)

bottomTabBarPadding
}

}
}

Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit a0a5cc0

Please sign in to comment.