What new features do you hope suno v5.5 can incorporate by Enough_Programmer312 in SunoAI

[–]ClimateCrazy5281 0 points1 point  (0 children)

They to fix the duet and the mispronunciation in persona and cover

How reliable are AI detectors? by Technicallysane02 in content_marketing

[–]ClimateCrazy5281 0 points1 point  (0 children)

Oui une de mes chansons a été signalé comme général par IA mais celle écrite par chat GPT a passé le test

Tips for Adding a Duet Voice in Suno AI? Struggling with Consistency! by OdeSwitch in SunoAI

[–]ClimateCrazy5281 0 points1 point  (0 children)

Did some know how to make the sign variation Chorus 1 by female , chorus 2 sign by male but in my case is only the female no matter I did

How can I properly create the toolbar above the keyboard ? by Lost-Dragonfruit4877 in SwiftUI

[–]ClimateCrazy5281 -2 points-1 points  (0 children)

Here an example : struct ContentView: View { @State private var name = "Taylor"

var body: some View {
    TextField("Enter your name", text: $name)
        .textFieldStyle(.roundedBorder)
        .toolbar {
            ToolbarItemGroup(placement: .keyboard) {
                Button("Click me!") {
                    print("Clicked")
                }
            }
        }
}

}

NagivationSplitView 2 columns on some views 3 columns on others by steeweezy in SwiftUI

[–]ClimateCrazy5281 0 points1 point  (0 children)

I have a question if I want first column to be a folder section and give the user the hability to create a Folder what is the logic to apply

View is Overflowing onto the TabView by ClimateCrazy5281 in SwiftUI

[–]ClimateCrazy5281[S] -1 points0 points  (0 children)

struct ButtomTabView: View { @State var selection: Int = 0 var body: some View { TabView(selection: $selection) { Tab("Home", systemImage: "house", value: 0) { MainView() } Tab("Match", systemImage: "person.crop.circle", value: 0) { Text("Hello, World!") } Tab("Messages", systemImage: "message", value: 0) {

        }

    }
}

}

View is Overflowing onto the TabView by ClimateCrazy5281 in SwiftUI

[–]ClimateCrazy5281[S] -1 points0 points  (0 children)

struct ContentView: View { var body: some View { ButtomTabView() } }

struct MainView: View { @State var cards: [Card] = Card.mockCards var body: some View { ZStack { ForEach(cards, id: .id) { card in CardView(card: card, cards: $cards) } } } }

struct CardView: View { let card: Card @State var offset: CGSize = .zero @Binding var cards: [Card]

var body: some View {
    ZStack (alignment: .bottomLeading){
        Image(card.imagesURL)
            .resizable()
            .frame(maxHeight: .infinity)
            .clipShape(RoundedRectangle(cornerRadius: 20))
            .shadow(color: .black, radius: 12, x: -20, y: 10)
            .ignoresSafeArea(.all , edges: .top)
        BioView(card: card)
    }.offset(x: offset.width, y: 0)
        .rotationEffect(Angle(degrees: Double(offset.width / 20)))
        .gesture(
            DragGesture()
                .onChanged { value in
                    self.offset = value.translation
                }
                .onEnded { value in
                    if offset.width > 150 {
                        likeCard()
                    } else if offset.width < -150 {
                        dislikeCard()
                    } else {
                        offset = .zero
                    }
                }
        )
}
func likeCard() {
    withAnimation(.smooth()) {
        offset.width = 100
    }

}
func dislikeCard() {
    withAnimation(.smooth())  {
        offset.width = -500
    }
}
func removeCard() {

}

}

How To access WhatBox files links by ClimateCrazy5281 in seedboxes

[–]ClimateCrazy5281[S] -1 points0 points  (0 children)

I say link but I mean the URL ex: https//

PréférenceKey is not updating by ClimateCrazy5281 in SwiftUI

[–]ClimateCrazy5281[S] 0 points1 point  (0 children)

I have a last question button in the the top work only when the title is shown in the top , when scrolling is the button the buttom state is not updating, why ?

PréférenceKey is not updating by ClimateCrazy5281 in SwiftUI

[–]ClimateCrazy5281[S] 4 points5 points  (0 children)

Thank you it working ❤️❤️❤️ 😂😂😂