SwiftUI combine rectangle and triangle in shape

SwiftUI combine rectangle and triangle in shape Making custom shape is not hard in SwiftUI by implementing func path(in rect: CGRect) -> Path. You just have to draw points in your desired location in 2D coordinate space by path.move() and path.addLine() func, a line will be drawn automatically. Spread the love        

Spread the love

This app is not allowed to query for scheme fb in iOS

I wanted to open a Facebook Group page in the Facebook app on my iPhone but I was getting that error since I did not have any LSApplicationQueriesSchemes in my Info.plist file. This is the code After adding ‘fb’ in my scheme it solves the issue. My Info.plist file Spread the love        

Spread the love