Skip to content

Instantly share code, notes, and snippets.

View hmhmsh's full-sized avatar

shunkun hmhmsh

View GitHub Profile
@hmhmsh
hmhmsh / MaskedCornerRoundedRectangle.swift
Last active July 11, 2024 02:56
SwiftUIで一部角丸の枠線を引く
import SwiftUI
struct MaskedCornerRoundedRectangle: Shape {
let topLeadingRadius: CGFloat
let bottomLeadingRadius: CGFloat
let bottomTrailingRadius: CGFloat
let topTrailingRadius: CGFloat
init(topLeadingRadius: CGFloat = 0, bottomLeadingRadius: CGFloat = 0, bottomTrailingRadius: CGFloat = 0, topTrailingRadius: CGFloat = 0) {
self.topLeadingRadius = topLeadingRadius