mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-03-30 23:20:27 +08:00
19 lines
407 B
Swift
19 lines
407 B
Swift
//
|
|
// IGListCollectionViewLayout+GitHawk.swift
|
|
// Freetime
|
|
//
|
|
// Created by Ryan Nystrom on 11/12/17.
|
|
// Copyright © 2017 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import IGListKit
|
|
|
|
extension ListCollectionViewLayout {
|
|
|
|
static func basic() -> ListCollectionViewLayout {
|
|
return ListCollectionViewLayout(stickyHeaders: false, topContentInset: 0, stretchToEdge: false)
|
|
}
|
|
|
|
}
|