forked from LoopKit/LoopKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathColor.swift
More file actions
28 lines (24 loc) · 677 Bytes
/
Color.swift
File metadata and controls
28 lines (24 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
// Color.swift
// LoopKitUI
//
// Created by Pete Schwamb on 1/3/21.
// Copyright © 2021 LoopKit Authors. All rights reserved.
//
import SwiftUI
private class LocalBundle {
/// Returns the resource bundle associated with the current Swift module.
static var main: Bundle = {
if let mainResourceURL = Bundle.main.resourceURL,
let bundle = Bundle(url: mainResourceURL.appendingPathComponent("LoopKitUI_LoopKitUI.bundle"))
{
return bundle
}
return Bundle(for: LocalBundle.self)
}()
}
extension Color {
init?(frameworkColor name: String) {
self.init(name, bundle: LocalBundle.main)
}
}