Vasily Anisimov
Vasily Anisimov
Same problem 😒
Same question. Made workaround for now: ```yaml settings: FRAMEWORK_SEARCH_PATHS: HEADER_SEARCH_PATHS: FRAMEWORK_SEARCH_PATHS[sdk=macosx*]: HEADER_SEARCH_PATHS[sdk=macosx*]: ```
Hello! I've updated backport code and now it's using your implementation. Please check this out.
But if rename old implementations, people who already using it will get an error. And it will conflict with apple implementation. > we should move the first one to its...
Why do you want keep two separate methods? At first I did exactly as you suggest. But then I've merged two into one because using deprecated method in backport results...
No, I asking about `presentation(isModal: Bool)` and `presentation(isModal: Bool = true, _ onAttempt: @escaping () -> Void)`. Why not just use single method which I made `presentation(isModal: Bool = true,...
Any progress?
This issue could occur in other scenarios, but this is simplest way to reproduce
Yes, 100%. Same problem on Xcode 14, no difference. Which simulator did you use? Just checked on Xcode 14 RC + iPhone 11 14.1, same problem.
I've got same problem on latest iOS with `.backport.scrollDisabled(true)` on code like this: ```swift ScrollView { LazyVGrid(columns: [GridItem(.adaptive(minimum: 140))]) { rows } } .backport.scrollDisabled(true) ``` But I can't achieve this...