Let's Build Task Management App using SwiftUI | iOS 17 | 1/2

Поделиться
HTML-код
  • Опубликовано: 4 сен 2024
  • Follow Us: linktr.ee/comm... .... Join Free Community & 1 day early access for paid users: bit.ly/commitnew Hello Guys 👋👋👋
    Let's Build a Task Management App using SwiftUI | iOS 17 | 1/2
    ► Source Code: bit.ly/commitnew
    ► Subscribe For More: @jot.commit
    ► Social Platforms
    Instagram: / commit.io
    Twitter: / imjotharika
    #SwiftUI #Firebase #iOSdevelopment #iOSprogramming #iOSapp #appdevelopment #appprogramming #appdev #mobiledevelopment #mobileapp #coding #programming #developer #softwareengineering #iOSdeveloper #Xcode #iOS17 #tutorial #iOSdevelopmenttutorial #SwiftUItutorial

Комментарии • 30

  • @seymenozdes
    @seymenozdes 10 месяцев назад +11

    Just a suggestion, the music you put in the background makes it difficult to focus during long-term viewing.

    • @jot.commit
      @jot.commit  10 месяцев назад +2

      Thanks, Noted!! We improve this

    • @seymenozdes
      @seymenozdes 10 месяцев назад +1

      @@jot.commit good luck, keep going🚀

    • @leandrors
      @leandrors 10 месяцев назад +8

      you can always mute the video and put whatever song you like since there's no voice over.

    • @Memes_uploader
      @Memes_uploader 2 месяца назад

      Choose silence, or rock

  • @JerickoWahussein
    @JerickoWahussein 3 месяца назад +1

    //This is what I did at 5:25 I hope this helps!
    HStack(alignment: .center, spacing: 0, content: {
    // week slider
    if !weekSlider.isEmpty {
    weekView(weekSlider)
    }
    })
    .frame(maxWidth: .infinity)
    .onAppear() {
    if weekSlider.isEmpty {
    let currentWeek = Date().fetchWeek()
    weekSlider.append(contentsOf: currentWeek)
    }
    }

    • @jabalahkhaldun3467
      @jabalahkhaldun3467 3 месяца назад

      bless your kind soul

    • @sh0egame109
      @sh0egame109 Месяц назад

      do you have the source code for this project

    • @prudhvimoturu
      @prudhvimoturu 24 дня назад

      Directly pass the object
      weekView(weekSlider)

  • @earu723
    @earu723 3 месяца назад +3

    love this

  • @vb4190
    @vb4190 7 месяцев назад +1

    waiting for notion calendar clone app 🤞

  • @sameernikhil6990
    @sameernikhil6990 10 месяцев назад +1

    Hey, Can you please a make a video on how to make a VPN app using SwiftUI ?

  • @cristianlaguna1158
    @cristianlaguna1158 4 месяца назад +1

    How did you fix the error at 5:25?

    • @jaki6274
      @jaki6274 3 месяца назад

      i found out, if you are still interested. In ContentView.swift file in line 15, it has to be "@State var weekSlider: [ [Date.Weekday] ] = [ ]". Don't forget the doubled parenthesis!

  • @sushiConPorotos
    @sushiConPorotos 6 месяцев назад +2

    No man, the music was a bad idea

  • @Storm-2024
    @Storm-2024 6 месяцев назад +1

    How did you fix the error at 5:25?

    • @user-kv1uv4lf1x
      @user-kv1uv4lf1x 5 месяцев назад

      Did you solve the problem?

    • @Storm-2024
      @Storm-2024 5 месяцев назад

      @@user-kv1uv4lf1x no

    • @jaki6274
      @jaki6274 3 месяца назад

      i found out, if you are still interested. In ContentView.swift file in line 15, it has to be "@State var weekSlider: [ [Date.Weekday] ] = [ ]". Don't forget the doubled parenthesis!

  • @typicaltype2608
    @typicaltype2608 6 месяцев назад +1

    how did you fix the error at 5:25?

    • @ismailkurt5285
      @ismailkurt5285 6 месяцев назад

      @State var weekSlider: [[Date.WeekDay]] = []
      If you do it like this, it will be fixed.

    • @user-kv1uv4lf1x
      @user-kv1uv4lf1x 5 месяцев назад

      Did you solve the problem?

    • @typicaltype2608
      @typicaltype2608 5 месяцев назад

      @@user-kv1uv4lf1x yeah you write the var like this: @State var weekSlider: [[Date.WeekDay]] = []
      rather than this: @State var weekSlider: [Date.WeekDay] = []

    • @antall8385
      @antall8385 5 месяцев назад

      Did you found it? @@user-kv1uv4lf1x

    • @jaki6274
      @jaki6274 3 месяца назад

      @@user-kv1uv4lf1x i found out, if you are still interested. In ContentView.swift file in line 15, it has to be "@State var weekSlider: [ [Date.Weekday] ] = [ ]". Don't forget the doubled parenthesis!