]> git.r.bdr.sh - rbdr/patterns/blobdiff - Sources/Patterns/Pattern.swift
Add readme, update API
[rbdr/patterns] / Sources / Patterns / Pattern.swift
index 19518883173b35c638bd3317db788c50568671db..4fbc5287dcf974c94aea8a64c51349d7e1604b76 100644 (file)
@@ -1,14 +1,15 @@
 import SwiftUI
 
 public struct Pattern: View {
-
-  private let pixelSize: CGFloat = 2.0;
   
   private var patternSize: CGFloat {
     pixelSize * 8.0;
   }
   
   @Binding var design: TileDesign;
+  var pixelSize: CGFloat = 2.0;
+  var foregroundColor: Color = .black
+  var backgroundColor: Color = .white
   
   public var body: some View {
     GeometryReader { gr in
@@ -16,7 +17,7 @@ public struct Pattern: View {
         ForEach(0 ..< 1 + Int(ceil(gr.size.height / patternSize)), id: \.self) { i in
           HStack(spacing: 0) {
             ForEach(0 ..< Int(ceil(gr.size.width / patternSize)), id: \.self) { j in
-              Tile(design: design)
+              Tile(design: design, pixelSize: pixelSize, foregroundColor: foregroundColor, backgroundColor: backgroundColor)
             }
           }
         }
@@ -27,6 +28,13 @@ public struct Pattern: View {
 
 struct Pattern_Previews: PreviewProvider {
     static var previews: some View {
-      Pattern(design: .constant(TileDesign.grid))
+      VStack {
+        Text("Default")
+        Pattern(design: .constant(TileDesign.grid))
+        Text("Color override")
+        Pattern(design: .constant(TileDesign.balls), foregroundColor: .pink, backgroundColor: .cyan)
+        Text("Pixel size override")
+        Pattern(design: .constant(TileDesign.shingles), pixelSize: 8.0)
+      }
     }
 }