We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f84216e commit dc865e5Copy full SHA for dc865e5
Apps/Examples/Examples/FioriSwiftUICore/Card/MobileCardExample.swift
@@ -292,9 +292,7 @@ struct FioriCardFeaturedContent<Content: View>: View {
292
}
293
294
295
-public struct FioriCard<
296
- Content: View,
297
->: View {
+public struct FioriCard<Content: View>: View {
298
// MARK: - Elements of a card
299
300
private let content: Content
@@ -307,9 +305,7 @@ public struct FioriCard<
307
305
/// - header: The header of the card.
308
306
/// - content: The content of the card.
309
/// - footer: The footer of the card.
310
- public init(
311
- @ViewBuilder content: () -> Content = { EmptyView() },
312
- ) {
+ public init(@ViewBuilder content: () -> Content = { EmptyView() }) {
313
self.content = content()
314
315
0 commit comments