mirror of
https://github.com/easychen/pushdeer.git
synced 2024-11-02 00:29:20 +08:00
38 lines
742 B
Swift
38 lines
742 B
Swift
//
|
|
// Line.swift
|
|
// PushDeer
|
|
//
|
|
// Created by HEXT on 2021/12/27.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
/// 水平线
|
|
struct HLine: Shape {
|
|
func path(in rect: CGRect) -> Path {
|
|
Path { path in
|
|
path.move(to: CGPoint(x: rect.minX, y: rect.midY))
|
|
path.addLine(to: CGPoint(x: rect.maxX, y: rect.midY))
|
|
}
|
|
}
|
|
}
|
|
|
|
/// 垂直线
|
|
struct VLine: Shape {
|
|
func path(in rect: CGRect) -> Path {
|
|
Path { path in
|
|
path.move(to: CGPoint(x: rect.midX, y: rect.minY))
|
|
path.addLine(to: CGPoint(x: rect.midX, y: rect.maxY))
|
|
}
|
|
}
|
|
}
|
|
|
|
struct Line_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
// 横虚线示例
|
|
HLine().stroke(style: StrokeStyle(lineWidth: 1,dash: [5]))
|
|
// 竖实线
|
|
VLine().stroke()
|
|
}
|
|
}
|