I cannot load image here, take error, when I update my macbook to macos venture, it is give alots notification on top right corner like "background items added", why I don't know what is the problem
Post
Replies
Boosts
Views
Activity
it is download, u can follow it in launchpad menu
UInt8 is an unsigned integer which can store only positive values.
when I use @State var show = false in RegisterFirstScreen, it fix error.
I forget put the () end of the signUp
self.viewModel.signUp()
here some example but I do not know how I will add two delete method to one .alert dialog
struct AlertInfo: Identifiable {
enum AlertType {
case one
case two
}
let id: AlertType
let title: String
let message: String
}
struct ContentView6: View {
// 2
@State private var info: AlertInfo?
var body: some View {
VStack {
Button("Alert 1") {
// 3
info = AlertInfo(
id: .one,
title: "Title 1",
message: "Message 1")
}
Button("Alert 2") {
// 4
info = AlertInfo(
id: .two,
title: "Title 2",
message: "Message 2")
}
}
.alert(item: $info, content: { info in // 5
Alert(title: Text(info.title),
message: Text(info.message))
})
}
}
I forget to add value after .spring(), it is work for me now.
@Binding var display: Bool
private var background: some View {
Color.black
.fillParent()
.opacity(0.6)
.animation(.spring(), value: display)
}
delete xcode completely and download again
@OOP, I show below
HStack{
Text(data.user)
.searchable(text: $searchText, placement: .navigationBarDrawer)
.font(.caption)
.foregroundColor(.black)
}
model:
struct Recent: Identifiable {
var id = UUID().uuidString
var user: String
}
let data= [
Recent(user: "skysoft1"),
Recent(user: "skysoft2"),
Recent(user: "skysoft3"),
]
As OOPers and Claude mentions in comment, when we called the TabView as MyTabView problem solved
on line 2 I get error, in TabView , and how onboardingData and OnboardingCard are defined it is defined as
OnboardingCard:
fileprivate struct OnboardingCard: View {
let onboardingItem: OnboardingItem
var body: some View {
VStack {
Image(onboardingItem.imageName)
.resizable()
.frame(width:340, height:340)
Text(onboardingItem.title)
.font(.title)
.foregroundColor(.black)
.bold()
.padding()
Text(onboardingItem.description)
.multilineTextAlignment(.center)
.font(.body)
.foregroundColor(.gray)
.padding (.horizontal, 15)
}
}
}
onboardingData:
var onboardingData: [OnboardingItem] = [
OnboardingItem(imageName: "image1", title: "Welcome1", description: "description1"),
OnboardingItem(imageName: "image2", title: "Welcome2", description: "description2"),
OnboardingItem(imageName: "image3", title: "Welcome3", description: "description3"),
OnboardingItem(imageName: "image4", title: "Welcome4", description: "description4")
]
no last version Version 12.5.1
I find second parameter, it fix error, tnx :)
actually, I just put code to fix that problem. I don't know what will be need to solve?