12 lines
464 B
Swift
12 lines
464 B
Swift
import SwiftUI
|
|
|
|
struct ChartTypeKey: EnvironmentKey {
|
|
static let defaultValue: AnyChartType = AnyChartType(BarChart())
|
|
}
|
|
|
|
struct ChartStyleKey: EnvironmentKey {
|
|
static let defaultValue: ChartStyle = ChartStyle(backgroundColor: .white,
|
|
foregroundColor: ColorGradient(ChartColors.orangeDark,
|
|
ChartColors.orangeBright))
|
|
}
|