i just read in stackoverflow i can only concatenate animation with delay, so i tried this here which simply shrinks and then scales the circle again. unfortunat
I have a ScrollView with multiple Buttons. A Button contains a Image and a Text underneath. As the images are pretty large I am using .scaledToFill and .clipp
SwiftUI Custom Button in List I'm trying to create a custom button in a SwiftUI List. I want it to have a blue background with white text, and importantly, to
When using ScrollView the views inside it are spread across the whole screen width by default, but when using List, there is a padding on the sides. Is there a
I am trying to use a Share function inside my MacOS app in SwiftUI. I am having a URL to a file, which I want to share. It can be images/ documents and much mor
SwiftUI not only gives us get automatic animation… it lets us control how the animation occurs, using the animatableData property. So cool! Only I
I'm trying to implement AdMob open ad in a SwiftUI project using Google's documentation: https://developers.google.com/admob/ios/app-open-ads. The problem is th
Starting point is a NavigationView within a TabView. I'm struggling with finding a SwiftUI solution to pop to the root view within the navigation stack when the
enter image description hereSo basically, I want to put the word(s) inputted into a TextField into an array, but also split the word(s) up into separate charact
please help me to set image in macOs application using swiftUI Here is my Implementation: import SwiftUI struct SigninView: View { var body: some View {
Here is a bug in SwiftUI when you show modal from button inside navigation bar items. In code below Button 1 works as expected, but Button 2 works only once: s
I'm curious what SwiftUI is doing under the covers when applying an idealHeight to a Spacer's frame. Will the Spacer use the idealHeight as its target height bu
I know SwiftUI uses state-driven rendering. So I was assuming, when I delete Core Data Entity entries, that my List with Core Data elements gets refreshed immed
Goal: upload 3 images from SwiftUI app to Firebase, with different URL for each. Problem: I only managed to upload 1. What I have tried (but didn't work).... :
How can I use Inner Shadow on a Rectangle()? Rectangle() .foregroundColor(.green) .frame(width: 400, height: 300) I can only manage t
I'm trying to change the colour of my animation based on the state of something. The colour change works but it animates the previous (orange) colour with it. I
I am aware of how to dismiss a modal from a child view using @Environment (\.presentationMode) var presentationMode / self.presentationMode.wrappedValue.dismiss
In UIDatePicker we can do something like this datePicker.timeZone = TimeZone(secondsFromGMT: 5*60*60) in order to specify timezone of datepicker. But how
I'm attempting to create a grid of small square views, that when the user hovers over them with their thumb (or swipes across them), the little squares will tem
Im trying to test a simple publisher within the Combine framework and SwiftUI. My test tests a published bool named isValid in my view model. My view model al