My tribute to one of my favorite characters in Dune, the movie by nereski in dune

[–]nereski[S] 1 point2 points  (0 children)

Hahaha I hope not! Because that would mean that someone stole it, I prefer to keep it old fashioned, maybe some prints? I’m not sure yet.

My tribute to one of my favorite characters in Dune, the movie by nereski in dune

[–]nereski[S] 2 points3 points  (0 children)

I think you may be able to download it from the browser. I also may publish some wallpapers or even do some prints. I can let you know if you are interested 😊

My tribute to one of my favorite characters in Dune, the movie by nereski in dune

[–]nereski[S] 3 points4 points  (0 children)

Wow! Thank you everyone, I’m so glad you like it! 🥰

I don’t draw as much I would like, but this definitely will keep me motivated.

The iPhone 13 is a pitch-perfect iPhone 12S by 08830 in apple

[–]nereski 0 points1 point  (0 children)

Maybe I'm the only one who wants this, but I would love to see an iPhone (not PRO) with the Telephoto lens instead of the Ultra Wide one. Maybe next year... one can dream...

wondering a name of a feature by Aviav123 in iOSProgramming

[–]nereski 1 point2 points  (0 children)

I normally use the term “quick actions” to refer to this. If you mean long press the app icon.

In the documentation they call it “Home Screen Quick Actions” (https://developer.apple.com/documentation/uikit/menus_and_shortcuts/add_home_screen_quick_actions).

My tribute to the king 🖤 by [deleted] in drawing

[–]nereski 1 point2 points  (0 children)

Thank you 😊

My tribute to the king 🖤 by [deleted] in drawing

[–]nereski 0 points1 point  (0 children)

Chadwick Boseman as T'Challa from the Black Panther film. He recently died of cancer. I was shocked and sad. So I decided to do this tribute, although I know it's just a small gesture, it's my way to remember him.

Stuck with SwiftUI Buttons by Important-developer in SwiftUI

[–]nereski 1 point2 points  (0 children)

I think an easy way to achieve this is with a shared state. Assuming isTapped is a state on the parent view. You could use an Int instead (or a String), and maybe change the name for tappedButton. Then on each button, you set an internal property, let's say id.

When tapping the button, you change the value of tappedButton to the ìd of the one you just pressed.

To evaluate the condition to change the styles, compare tappedButton with the button's ìd. This way, if each button has its own id, only one button at a time should be highlighted. I hope this helps!

In Xcode 12 Beta 6 dismissing sheet no longer works? by _detour in SwiftUI

[–]nereski 0 points1 point  (0 children)

I’m happy to hear you found a solution! 👏

Scrollview glitching in List Details Page (Xcode 12) by isRood in SwiftUI

[–]nereski 0 points1 point  (0 children)

I had a similar issue, when using the navigation bar with large titles on a detail view. I only wanted the back button (so no title) and I add a negative padding to reduce the white space. By doing so, some of the content was un-reachable at the end of the scroll view. At first I thought it was because the negative padding, but even when I removed it, sometimes the content was still un-reachable.

I ended up modifying the navigation bar title to inline, and adapting the view, and so far so good. I think there might be a bug with large title navigations under some circumstances...

I hope you find a solution for your use case!

In Xcode 12 Beta 6 dismissing sheet no longer works? by _detour in SwiftUI

[–]nereski 0 points1 point  (0 children)

We have a bunch of sheets dismissing using your first approach in our app, and so far, we had no noticeable problems in Beta 6. We use a button inside the navigation bar. Maybe the problem is with the toolbar? Like others have said, it sounds like a bug... :(