Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Dec 22, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Blueprints.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "Blueprints"
s.summary = "A collection of flow layouts that is meant to make your life easier."
s.version = "0.11.3"
s.version = "0.11.4"
s.homepage = "https://github.com/zenangst/Blueprints"
s.license = 'MIT'
s.author = { "Christoffer Winterkvist" => "[email protected]" }
Expand Down
1 change: 1 addition & 0 deletions Sources/Shared/Core/HorizontalBlueprintLayout.swift
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@
for section in 0..<numberOfSections {
widthOfSection = 0
guard numberOfItemsInSection(section) > 0 else {
layoutAttributes.append([])
continue
}

Expand Down
1 change: 1 addition & 0 deletions Sources/Shared/Core/VerticalBlueprintLayout.swift
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@

for section in 0..<numberOfSections {
guard numberOfItemsInSection(section) > 0 else {
layoutAttributes.append([])
continue
}

Expand Down