October 04, 2021
I will add a bunch of little notes as I read all the tutorials in the internet. (Yep, ALL the tutorials in the internet)
Ignoring Safe Area
Apparently
ignoresSafeArea
and
edgesIgnoringSafeArea
both do the same.
let colors = [Color.init(red: 0.1, green: 0.1, blue: 0.6), Color.blue]
LinearGradient(gradient: Gradient(colors: colors), startPoint: .topLeading, endPoint: .bottomTrailing)
.ignoresSafeArea(SafeAreaRegions.all, edges: [Edge.Set.top, .bottom])
.edgesIgnoringSafeArea(Edge.Set.all)