iOS SwiftUI – update variable based on view height on appear
I have this variable: @State var profileViewHeight: CGFloat = 200 and I need to update it based on a view as soon as it appears This is what I've tried: GeometryReader { geo in userProfileView(uid: uid, userid: self.$userid, offsetMenu: self.$offsetMenu,…