SimpleCollectionViewBooking

A simple booking feature using CollectionView and Compositional Layout. Available dates for booking come form a simple API.

SimpleCollectionViewBooking

JSON

[
   {
      "day":"10.7.2020",
      "dayPart":"10",
      "monthYearPart":"7/20",
      "times":[
         {
            "time":"10:00"
         },
         {
            "time":"11:00"
         },
         {
            "time":"12:00"
         },
         {
            "time":"10:00"
         }
      ]
   },
   {
      "day":"11.7.2020",
      "dayPart":"11",
      "monthYearPart":"7/20",
      "times":[
         {
            "time":"9:00"
         },
         {
            "time":"13:00"
         },
         {
            "time":"18:00"
         }
      ]
   }
]

GitHub