blob: 554492b164553026744feb916c59b570e21395d4 [file] [log] [blame]
{
"name": "StyleDecorator",
"version": "0.3.0",
"summary": "Kindly styling of text through decorating string",
"description": "Design string simply by linking attributes to needed part.\n`\"Style\"+d1+\"Decorator\"+d2+\"!\"`\n\nExample:\n```swift\nlet a = Decorator(style: Style().foregroundColor(.black))\nlet b = Decorator(style: Style().foregroundColor(.white))\nlet c = Decorator(style: Style().foregroundColor(.gray))\n\n// You can write in syntax you prefer\nlet decoratedText = \"We\"+a+\"Are\"+b+\"Pinto\"+c\nlabel.attributedText = NSAttributedString(decorator: decoratedText)\n\n// or\nlet a1 = a.wrap, b1 = b.wrap, c1 = c.wrap\nlet decoratedText2 = a1(\"We\") + b1(\"Are\") + c1(\"Pinto\")\nlabel.attributedText = NSAttributedString(decorator: decoratedText2)\n```\n\nString can be designed dynamically:\n```swift\n// check Example for detailed code, where created 'd', 'e', 'f' etc\n\nlet titleText = \"! \"+(\"We\"+b+\"Are\"+c+\"Pinto\"+d)\nlet decoratedText = \"Decorate your string easy\"+a+\"\n\n\"+titleText+\"\n\n\"+\"Ideas\"+e+\"\n\"+\"Thinking up smart ideas\"+f+\"\n\n\nwith default attributes\"\n\nlet defaultAttributes = Style().font(UIFont.systemFont(ofSize: 15, weight: UIFontWeightBlack))\n .alignment(.center).attributes\n\nlabel.attributedText = NSAttributedString(decorator: decoratedText, attributes: defaultAttributes)\n```",
"homepage": "https://github.com/dimpiax/StyleDecorator",
"screenshots": "https://github.com/dimpiax/StyleDecorator/raw/master/Example/StyleDecorator/Images.xcassets/thumbnail.imageset/thumbnail.png",
"license": {
"type": "MIT",
"file": "LICENSE"
},
"authors": {
"Dima Pilipenko": "dimpiax@gmail.com"
},
"source": {
"git": "https://github.com/dimpiax/StyleDecorator.git",
"tag": "0.3.0"
},
"social_media_url": "https://twitter.com/dimpiax",
"platforms": {
"ios": "8.0"
},
"source_files": "StyleDecorator/Classes/**/*",
"pushed_with_swift_version": "3.0"
}