python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to change a string I get from API
I get a string with a date of the first flight for each of four rockets from this API. The string that I get looks like this: "2006-03-24". I want it to look this way: "24 March, 2006&q...
bowtie
Votes: 0
Answers: 3
Storing Units in @AppStorage
I need to store a user's chosen selection of 11 different measurement units in AppStorage.
Ideally something equivalent to:
@AppStorage("shortDistance") var shortDistance: UnitLength = .met...
MarkCX
Votes: 0
Answers: 0
How to show only the result of a searchable of a List Swiftui
I'm donig a list numbers but i want to show only the result of my searchable not the whole list, how can i hide the list?
I was trying to change the state of a boolean when the searchtext was empty bu...
Rey21
Votes: 0
Answers: 2
SwiftUI : How I can delete row of ForEach in VStack?
This is TaskModel
import Foundation
import SwiftUI
struct TaskModel: Identifiable, Codable {
var id = UUID().uuidString
var title : String
var selectedColor : Color
var remindedTime ...
Kyungyun Lee
Votes: 0
Answers: 1