mirror of
https://github.com/stoatchat/for-ios.git
synced 2026-07-18 16:04:32 -04:00
16 lines
342 B
Swift
16 lines
342 B
Swift
//
|
|
// Section.swift
|
|
// Revolt
|
|
//
|
|
// Created by Angelo on 29/10/2024.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
|
|
extension Section {
|
|
init(_ title: String, content: @escaping () -> Content, footer: @escaping () -> Footer) where Parent == Text, Content: View, Footer: View {
|
|
self.init(content: content, header: { Text(title) }, footer: footer)
|
|
}
|
|
}
|