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",
12 "mohamed saeed": "mohedsh@gmail.com"
15 "git": "https://github.com/madadoux/DUviews.git",
21 "swift_versions": "4.0",
22 "source_files": "Classes/*.{h,m,swift}",
23 "swift_version": "4.0"