Day 50 – Cupcake

apple watch and air pods on black surface

A few small things need some adjustment to work well on the Apple Watch. The main accommodation is the wording of the Stepper.

The watch’s smaller screen means that only the number can be used inside the stepper. I, therefore, decided to add header text to the Section to explain what the form fields below it were for.

Section("Cake Type and Quantity") {
 Picker("Flavour", selection: $order.type) {
  ForEach(Order.types.indices) {
   Text(Order.types[$0])
  }
 }

 Stepper("\(order.quantity)", value: $order.quantity, in: 3...20)
  .font(.caption)
 }

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.