Support for edgesIgnoringSafeArea in Android #166
Saksham-245
started this conversation in
General
Replies: 2 comments 4 replies
-
Thanks for the report! .edgesIgnoringSafeArea has been deprecated in SwiftUI, so Skip does not support it. Please try with .ignoresSafeArea: https://developer.apple.com/documentation/swiftui/view/ignoressafearea(_:edges:) Let us know if you have any trouble with this API. |
Beta Was this translation helpful? Give feedback.
1 reply
-
Android only crashing if applying on this rgb colour values like this Color(red: 248, green: 238, blue: 226) but not on like Color.red or Color(hue: 0.9, saturation: 0.8, brightness: 0.9, opacity: 1) |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi All,
Currently I am trying out skip by building an to do app and in that I am to apply colour to whole background using ZStack and in that applying
Color(red: 248, green: 238, blue: 226).edgesIgnoringSafeArea(Edge.Set.all)
but on Android it is making the app crashed.Beta Was this translation helpful? Give feedback.
All reactions