Skip to content

Commit 1736f2f

Browse files
committed
add hideMarkers to hide all Markers
1 parent d492782 commit 1736f2f

File tree

3 files changed

+23
-4
lines changed

3 files changed

+23
-4
lines changed

Sources/FXDatePicker/Views/DayView.swift

+7-3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ public struct DayView: View {
1515
let isBeforeToday: Bool
1616
let isToday: Bool
1717
let specialDate: SpecialDate?
18+
let hideMarkers: Bool
19+
1820
private let imageSize: CGFloat = 25
1921
let calendar: Calendar
2022

@@ -40,15 +42,17 @@ public struct DayView: View {
4042

4143
ZStack {
4244

43-
if let specialDate = specialDate {
44-
specialDateImage(specialDate)
45+
if !hideMarkers {
46+
if let specialDate = specialDate {
47+
specialDateImage(specialDate)
48+
}
4549
}
4650

4751
Spacer()
4852
}
4953
.frame(height: imageSize)
5054
}
51-
.frame(height: 70) // height for DayView
55+
.frame(height: hideMarkers == false ? 70 : 40) // height for DayView
5256
}
5357

5458
@ViewBuilder func specialDateImage(_ specialDate: SpecialDate) -> some View {

Sources/FXDatePicker/Views/FXDatePickerView.swift

+14-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ public struct FXDatePickerView: View {
1717
@Environment(\.calenderType) private var calenderType
1818
@Environment(\.layoutDirection) private var layoutDirection
1919

20+
private var hideMarkers: Bool = false
21+
2022
private var calendar: Calendar {
2123
switch calenderType {
2224
case .gregorian:
@@ -65,7 +67,8 @@ public struct FXDatePickerView: View {
6567
MonthView(displayedMonth: $displayedMonth,
6668
selectedDate: $selectedDate,
6769
specialDates: specialDates,
68-
calendar: calendar)
70+
calendar: calendar,
71+
hideMarkers: hideMarkers)
6972
}
7073
.padding()
7174
.background(theme.main.backgroundColor)
@@ -91,3 +94,13 @@ public struct FXDatePickerView: View {
9194
}
9295

9396
}
97+
98+
public extension FXDatePickerView {
99+
100+
func hideMarkers(_ show: Bool = true) -> FXDatePickerView {
101+
var fxDatePicker = self
102+
fxDatePicker.hideMarkers = show
103+
return fxDatePicker
104+
}
105+
106+
}

Sources/FXDatePicker/Views/MonthView.swift

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ public struct MonthView: View {
1919
@Environment(\.layoutDirection) private var layoutDirection
2020

2121
let calendar: Calendar
22+
let hideMarkers: Bool
2223

2324
private var firstDayOfMonth: Date {
2425
calendar.date(from: calendar.dateComponents([.year, .month], from: displayedMonth)) ?? Date()
@@ -79,6 +80,7 @@ public struct MonthView: View {
7980
isBeforeToday: isDateBeforeToday(date: date),
8081
isToday: isToday(date: date),
8182
specialDate: specialDate,
83+
hideMarkers: hideMarkers,
8284
calendar: calendar)
8385
.onTapGesture { self.selectedDate = date }
8486
}

0 commit comments

Comments
 (0)