[Add] AlibabacloudBPStudio20210931 4.0.4
[CocoaPods.git] / Specs / 0 / c / b / DUviews / 0.1.3 / DUviews.podspec.json
blobadefa848962946d62116a14141539a32860c0877
2   "name": "DUviews",
3   "version": "0.1.3",
4   "summary": "DUviews is collection of UI wrappers around UIKit views that supports writing UI in code very easily",
5   "description": "DUviews is collection of UI wrappers around UIKit views that supports writing UI in code very easily\nfor example if you want to make a label\nyou dont have to write\nlet label = UILabel()\nlabel.frame = CGRect(x,y,width,height)\nlabel.font = .systemFont(ofSize: 44)\nlabel.textColor = .blue\nview.addSubView(label)\n\nall you will write is\n\nlet label = DULabel(frame: CGRect(x: 0, y: 0, width: self.view.frame.width, height: 200), parent: view, font: .systemFont(ofSize: 44), textColor: .blue)!\nand its UILabel not a new class you can use all built in methods and variable in it",
6   "homepage": "https://github.com/madadoux/DUviews",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "mohamed saeed": "m.saeed@gmail.com"
13   },
14   "source": {
15     "git": "https://github.com/madadoux/DUviews.git",
16     "tag": "0.1.3"
17   },
18   "platforms": {
19     "ios": "9.0"
20   },
21   "swift_versions": "4.0",
22   "source_files": "Classes/*.{h,m,swift}",
23   "swift_version": "4.0"