### ListStyle in SwiftUI Source: https://developer.apple.com/design/human-interface-guidelines/lists-and-tables Use ListStyle to choose a table or list style that coordinates with your data and platform. This example shows a basic list style in SwiftUI. ```swift ListStyle ``` -------------------------------- ### Accessing System Fonts with Font.Design Source: https://developer.apple.com/design/human-interface-guidelines/typography Use constants defined in `Font.Design` to access all system fonts. Avoid embedding system fonts directly in your app or game. `Font.Design.default` retrieves the system font for all platforms, while `Font.Design.serif` specifically gets the New York font. ```swift Font.Design.default Font.Design.serif ```