SwiftUI Interview Tricks [Arabic]

Поділитися
Вставка
  • Опубліковано 16 вер 2024

КОМЕНТАРІ • 6

  • @mohamedelkilany7334
    @mohamedelkilany7334 7 днів тому

    Your content is so informative, and I learned a lot from it. Keep up the great work! I’m excited to see your next video.

    • @mohamedzaki4056
      @mohamedzaki4056  7 днів тому +1

      @mohamedelkilany7334 I'm very happy about that. I will do my best. Thanks for your support

  • @ahmadkhattab5700
    @ahmadkhattab5700 8 днів тому

    Thank you for the amazing video, it was very informative!
    Just a quick note: @ViewBuilder is a property wrapper, not a macro.

    • @mohamedzaki4056
      @mohamedzaki4056  8 днів тому

      @@ahmadkhattab5700 you are right. My bad, thank you for that

  • @MohamedRamadanHussien
    @MohamedRamadanHussien 4 дні тому

    Amazing video bro, keep it up!
    we can also add another solution to the first question by using Group view
    Enclose if&else in a Group view to create a single view
    Group {
    if toggle {
    Text("Hello")
    } else {
    Image("star")
    .resizable()
    .frame(width: 50, height: 50)
    }
    }

    • @mohamedzaki4056
      @mohamedzaki4056  4 дні тому

      @@MohamedRamadanHussien yes right good job my friend