*BONUS ENTRY* Putting SwiftUI Into Practice - Part 2

Second and final bonus entry! This is a bit more of a chance to put into practice some of the aspects of SwiftUI that I'm still getting used to. Start Time - 20:29 Here is the list from before - List - how to get items in a vertical list Image - including all the properties and modifiers Buttons - again, modifiers and other bits DatePicker - options for what day, month, year Toggle - something that is on/off Slider - a value going up or down H/V/Z Stack ForEach - a loop basically Form - as you would see in lots of iPhone menus Last time I covered list, image and ForEach. So, logically let's work on the other stuff - buttons, datepicker, toggle, slider, Stacks and Form! Buttons *20 minute delay var body : some View { Button (action: { print ( "Good food!" ) }) { VStack { ...