├── .appcast.xml ├── .gitignore ├── Example.sketch ├── LICENSE ├── README.md ├── Sketch Constraints.sketchplugin └── Contents │ ├── Resources │ ├── constraints@2x.png │ ├── editConstraints@2x.png │ ├── icon@2x.png │ ├── settings@2x.png │ └── updateLayout@2x.png │ └── Sketch │ ├── main.cocoascript │ ├── manifest.json │ └── utils.js └── docs ├── banner@2x.png ├── editconstraints.gif ├── example@2x.png ├── native@2x.png ├── runner@2x.png └── updatelayout.gif /.appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcbouchenoire/sketch-constraints/HEAD/.appcast.xml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcbouchenoire/sketch-constraints/HEAD/.gitignore -------------------------------------------------------------------------------- /Example.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcbouchenoire/sketch-constraints/HEAD/Example.sketch -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcbouchenoire/sketch-constraints/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcbouchenoire/sketch-constraints/HEAD/README.md -------------------------------------------------------------------------------- /Sketch Constraints.sketchplugin/Contents/Resources/constraints@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcbouchenoire/sketch-constraints/HEAD/Sketch Constraints.sketchplugin/Contents/Resources/constraints@2x.png -------------------------------------------------------------------------------- /Sketch Constraints.sketchplugin/Contents/Resources/editConstraints@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcbouchenoire/sketch-constraints/HEAD/Sketch Constraints.sketchplugin/Contents/Resources/editConstraints@2x.png -------------------------------------------------------------------------------- /Sketch Constraints.sketchplugin/Contents/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcbouchenoire/sketch-constraints/HEAD/Sketch Constraints.sketchplugin/Contents/Resources/icon@2x.png -------------------------------------------------------------------------------- /Sketch Constraints.sketchplugin/Contents/Resources/settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcbouchenoire/sketch-constraints/HEAD/Sketch Constraints.sketchplugin/Contents/Resources/settings@2x.png -------------------------------------------------------------------------------- /Sketch Constraints.sketchplugin/Contents/Resources/updateLayout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcbouchenoire/sketch-constraints/HEAD/Sketch Constraints.sketchplugin/Contents/Resources/updateLayout@2x.png -------------------------------------------------------------------------------- /Sketch Constraints.sketchplugin/Contents/Sketch/main.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcbouchenoire/sketch-constraints/HEAD/Sketch Constraints.sketchplugin/Contents/Sketch/main.cocoascript -------------------------------------------------------------------------------- /Sketch Constraints.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcbouchenoire/sketch-constraints/HEAD/Sketch Constraints.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /Sketch Constraints.sketchplugin/Contents/Sketch/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcbouchenoire/sketch-constraints/HEAD/Sketch Constraints.sketchplugin/Contents/Sketch/utils.js -------------------------------------------------------------------------------- /docs/banner@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcbouchenoire/sketch-constraints/HEAD/docs/banner@2x.png -------------------------------------------------------------------------------- /docs/editconstraints.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcbouchenoire/sketch-constraints/HEAD/docs/editconstraints.gif -------------------------------------------------------------------------------- /docs/example@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcbouchenoire/sketch-constraints/HEAD/docs/example@2x.png -------------------------------------------------------------------------------- /docs/native@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcbouchenoire/sketch-constraints/HEAD/docs/native@2x.png -------------------------------------------------------------------------------- /docs/runner@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcbouchenoire/sketch-constraints/HEAD/docs/runner@2x.png -------------------------------------------------------------------------------- /docs/updatelayout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcbouchenoire/sketch-constraints/HEAD/docs/updatelayout.gif --------------------------------------------------------------------------------