Files
FunctionalReactivePixels/FRP/FRPGalleryFlowLayout.m
2013-10-13 15:40:06 -04:00

25 lines
488 B
Objective-C

//
// FRPGalleryFlowLayout.m
// FRP
//
// Created by Ash Furrow on 10/13/2013.
// Copyright (c) 2013 Ash Furrow. All rights reserved.
//
#import "FRPGalleryFlowLayout.h"
@implementation FRPGalleryFlowLayout
-(instancetype)init {
if (!(self = [super init])) return nil;
self.itemSize = CGSizeMake(145, 145);
self.minimumInteritemSpacing = 10;
self.minimumLineSpacing = 10;
self.sectionInset = UIEdgeInsetsMake(10, 10, 10, 10);
return self;
}
@end