Skip to content

Instantly share code, notes, and snippets.

@tikimcfee
tikimcfee / FlowStack.swift
Created April 2, 2022 07:03 — forked from vanwagonet/FlowStack.swift
Simple flow layout in SwiftUI
import SwiftUI
/// A view that arranges its children in horizontal lines
///
/// FlowStack {
/// ForEach(1..<100) { num in
/// Text(String(num))
/// .padding(8)
/// .background(Circle().fill(Color.red))
/// }