Complete rename across all bundle IDs, App Groups, CloudKit containers, StoreKit product IDs, data store filenames, URL schemes, logger subsystems, Swift identifiers, user-facing strings (7 languages), file names, directory names, Xcode project, schemes, assets, and documentation. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
298 B
Swift
17 lines
298 B
Swift
//
|
|
// ChartViewItemBuildable.swift
|
|
// Reflect
|
|
//
|
|
// Created by Trey Tartt on 1/17/22.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
protocol ChartViewItemBuildable: View {
|
|
var color: Color { get }
|
|
var weekDay: Int { get }
|
|
var shape: BGShape { get }
|
|
|
|
init(color: Color, weekDay: Int, shape: BGShape)
|
|
}
|