create all templates .... started to fill one out

This commit is contained in:
Trey t
2022-02-09 23:03:47 -06:00
parent 34962d2fa3
commit 96f766c8c9
16 changed files with 561 additions and 6 deletions

View File

@@ -0,0 +1,22 @@
//
// ChartViewItemBuildable.swift
// Feels
//
// Created by Trey Tartt on 1/17/22.
//
import SwiftUI
enum ViewType: Hashable {
case cicle
case square
case text(String)
}
protocol ChartViewItemBuildable: View {
var color: Color { get }
var weekDay: Int { get }
var viewType: ViewType { get }
init(color: Color, weekDay: Int, viewType: ViewType)
}