David Chelidze

Results 3 comments of David Chelidze

@yashwanth777 please share info :) @gustanas ;)

You can use .frame with width .infinity and after add padding ``` LineView(data: [8,23,54,32,12,37,7,23,43], title: nil, legend: nil, style: ChartStyle.init(backgroundColor: Color.white, accentColor: Color.orange, secondGradientColor: Color.blue, textColor: Color.orange, legendTextColor: Color.black, dropShadowColor:...

> Generally you want to do the opposite, since `weakself` can theoretically become null between the time you check and the time you strongify it. > > ```objc > __weak...