File tree 3 files changed +23
-4
lines changed
Sources/FXDatePicker/Views
3 files changed +23
-4
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ public struct DayView: View {
15
15
let isBeforeToday : Bool
16
16
let isToday : Bool
17
17
let specialDate : SpecialDate ?
18
+ let hideMarkers : Bool
19
+
18
20
private let imageSize : CGFloat = 25
19
21
let calendar : Calendar
20
22
@@ -40,15 +42,17 @@ public struct DayView: View {
40
42
41
43
ZStack {
42
44
43
- if let specialDate = specialDate {
44
- specialDateImage ( specialDate)
45
+ if !hideMarkers {
46
+ if let specialDate = specialDate {
47
+ specialDateImage ( specialDate)
48
+ }
45
49
}
46
50
47
51
Spacer ( )
48
52
}
49
53
. frame ( height: imageSize)
50
54
}
51
- . frame ( height: 70 ) // height for DayView
55
+ . frame ( height: hideMarkers == false ? 70 : 40 ) // height for DayView
52
56
}
53
57
54
58
@ViewBuilder func specialDateImage( _ specialDate: SpecialDate ) -> some View {
Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ public struct FXDatePickerView: View {
17
17
@Environment ( \. calenderType) private var calenderType
18
18
@Environment ( \. layoutDirection) private var layoutDirection
19
19
20
+ private var hideMarkers : Bool = false
21
+
20
22
private var calendar : Calendar {
21
23
switch calenderType {
22
24
case . gregorian:
@@ -65,7 +67,8 @@ public struct FXDatePickerView: View {
65
67
MonthView ( displayedMonth: $displayedMonth,
66
68
selectedDate: $selectedDate,
67
69
specialDates: specialDates,
68
- calendar: calendar)
70
+ calendar: calendar,
71
+ hideMarkers: hideMarkers)
69
72
}
70
73
. padding ( )
71
74
. background ( theme. main. backgroundColor)
@@ -91,3 +94,13 @@ public struct FXDatePickerView: View {
91
94
}
92
95
93
96
}
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
+ }
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ public struct MonthView: View {
19
19
@Environment ( \. layoutDirection) private var layoutDirection
20
20
21
21
let calendar : Calendar
22
+ let hideMarkers : Bool
22
23
23
24
private var firstDayOfMonth : Date {
24
25
calendar. date ( from: calendar. dateComponents ( [ . year, . month] , from: displayedMonth) ) ?? Date ( )
@@ -79,6 +80,7 @@ public struct MonthView: View {
79
80
isBeforeToday: isDateBeforeToday ( date: date) ,
80
81
isToday: isToday ( date: date) ,
81
82
specialDate: specialDate,
83
+ hideMarkers: hideMarkers,
82
84
calendar: calendar)
83
85
. onTapGesture { self . selectedDate = date }
84
86
}
You can’t perform that action at this time.
0 commit comments