Den Andreychuk

Results 17 issues of Den Andreychuk

You have either: * out-of-date source repos which you can update with `pod repo update` or with `pod install --repo-update`. * mistyped the name or version. * not added the...

Hello @mkko! I have a question. Is it possible to insert drawer below specific view? I have UITabBarController with some items inside it. I want to present drawer below UITabBar...

Body of LottieView is wrapper into ZStack, which cause placeholder not to inherit frame size from parent. Example: ``` LottieView { try await DotLottieFile.named("animation") } placeholder: { Image("placeholder") .resizable() }...

Suppose we have a simple animation view which loads DotLottie file: ``` @State private var flag = false var body: some View { LottieView { try await DotLottieFile.named(animation) } placeholder:...

bug

The following code generates warning with `Strict Concurrency Checking` set to `Targeted`. ``` LottieView { try await DotLottieFile.named("animation") } ``` > Passing argument of non-sendable type '(any DotLottieCacheProvider)?' outside of...

The platform of the target `X` (visionOS 1.0) is not compatible with PromiseKit (8.1.1), which does not support visionOS.

bug
dependencies

`pod lib lint` command expecting `xros` instead of `visionos`: > ERROR | [visionOS] unknown: Encountered an unknown error (Could not find a `visionos` simulator (valid values: ios, tvos, watchos, xros)....

Hello, I'm currently working with the RiveRuntime library and I've been looking for a way to manually control whether animations are loaded synchronously or asynchronously. After exploring the documentation and...

enhancement

For now there are different modes: upper case, lower case, etc. Is there a way to preserve case from passed option. For example if option is lower case, keep lower...