diff --git a/Sora/Utils/MediaPlayer/CustomPlayer/CustomPlayer.swift b/Sora/Utils/MediaPlayer/CustomPlayer/CustomPlayer.swift index b783d4d..9db9b58 100644 --- a/Sora/Utils/MediaPlayer/CustomPlayer/CustomPlayer.swift +++ b/Sora/Utils/MediaPlayer/CustomPlayer/CustomPlayer.swift @@ -800,3 +800,4 @@ class CustomMediaPlayerViewController: UIViewController { // yes? Like the plural of the famous american rapper ye? -IBHRAD // low taper fade the meme is massive -cranci // cranci still doesnt have a job -seiike +// guys watch Clannad already - ibro diff --git a/Sora/Utils/SkeletonCells/SkeletonCell.swift b/Sora/Utils/SkeletonCells/SkeletonCell.swift index deb6c67..342b2bf 100644 --- a/Sora/Utils/SkeletonCells/SkeletonCell.swift +++ b/Sora/Utils/SkeletonCells/SkeletonCell.swift @@ -14,7 +14,7 @@ struct HomeSkeletonCell: View { VStack { RoundedRectangle(cornerRadius: 10) .fill(Color.gray.opacity(0.3)) - .frame(width: cellWidth, height: cellWidth * 1.5) // Maintains 2:3 aspect ratio + .frame(width: cellWidth, height: cellWidth * 1.5) .cornerRadius(10) .shimmering() @@ -34,7 +34,7 @@ struct SearchSkeletonCell: View { VStack(alignment: .leading, spacing: 8) { RoundedRectangle(cornerRadius: 10) .fill(Color.gray.opacity(0.3)) - .frame(width: cellWidth, height: cellWidth * 1.5) // Maintains 2:3 aspect ratio + .frame(width: cellWidth, height: cellWidth * 1.5) .shimmering() RoundedRectangle(cornerRadius: 5) .fill(Color.gray.opacity(0.3)) diff --git a/Sora/Views/LibraryView/LibraryView.swift b/Sora/Views/LibraryView/LibraryView.swift index 396300c..1e5612f 100644 --- a/Sora/Views/LibraryView/LibraryView.swift +++ b/Sora/Views/LibraryView/LibraryView.swift @@ -76,7 +76,7 @@ struct LibraryView: View { .frame(maxWidth: .infinity) } else { LazyVGrid(columns: Array(repeating: GridItem(.flexible(), spacing: 12), count: columnsCount), spacing: 12) { - let totalSpacing: CGFloat = 16 * CGFloat(columnsCount + 1) // Spacing between items + let totalSpacing: CGFloat = 16 * CGFloat(columnsCount + 1) let availableWidth = UIScreen.main.bounds.width - totalSpacing let cellWidth = availableWidth / CGFloat(columnsCount)