Framer-CollectionComponent icon indicating copy to clipboard operation
Framer-CollectionComponent copied to clipboard

Framer Module

Framer-CollectionComponent

CollectionComponent Framer Module

Usage:

Put CollectionComponent.coffee into the modules folder of your project.

{CollectionComponent} = require 'CollectionComponent'

myCollection = new CollectionComponent
	amount: 24
	columns: 4
	gutter: 0
	cellWidth: Screen.width / 4
	cellHeight: 100
	cell: (cell) ->
		cell.borderColor = "black"
		cell.borderWidth = 1
		cell.borderRadius = 5

[ DEMO ]