Skip to content

Instantly share code, notes, and snippets.

View kovs705's full-sized avatar
👽

Eugene Kovs kovs705

👽
View GitHub Profile
@kovs705
kovs705 / SVGWebView.swift
Last active October 4, 2023 14:36 — forked from helje5/SVGWebView.swift
A SwiftUI View to display SVGs using WKWebView
// Created by Helge Heß on 06.04.21.
// Modified by Kovs705 on 04.10.2023
// Also available as a package: https://github.com/ZeeZide/SVGWebView
import SwiftUI
import WebKit
/**
* Display an SVG using a `WKWebView`.
*
* Used by [SVG Shaper for SwiftUI](https://zeezide.de/en/products/svgshaper/)
@kovs705
kovs705 / Calendar.swift
Last active February 9, 2024 05:51 — forked from mecid/Calendar.swift
SwiftUI Calendar view using LazyVGrid
import SwiftUI
// MARK: - CustomCalendar
struct CustomCalendar: View {
var calendar: Calendar
let yearFormatter: DateFormatter
let monthFormatter: DateFormatter
let dayFormatter: DateFormatter
let weekDayFormatter: DateFormatter
let fullFormatter: DateFormatter