File tree 3 files changed +5
-4
lines changed
Sources/ArcGISToolkit/Components
3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ struct FloatingPanel<Content>: View where Content: View {
59
59
60
60
/// The height of the content.
61
61
@State private var height : CGFloat = . minHeight
62
-
62
+
63
63
/// A binding to a Boolean value that determines whether the view is presented.
64
64
private var isPresented : Binding < Bool >
65
65
@@ -77,6 +77,7 @@ struct FloatingPanel<Content>: View where Content: View {
77
77
VStack ( spacing: 0 ) {
78
78
if isCompact {
79
79
makeHandleView ( )
80
+ Divider ( )
80
81
}
81
82
content
82
83
. frame ( height: height)
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ struct MediaPopupElementView: View {
20
20
var popupElement : MediaPopupElement
21
21
22
22
@State var isExpanded : Bool = true
23
-
23
+
24
24
var body : some View {
25
25
if displayableMediaCount > 0 {
26
26
DisclosureGroup ( isExpanded: $isExpanded) {
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ public struct PopupView: View {
28
28
/// The `Popup` to display.
29
29
private var popup : Popup
30
30
31
- /// A Boolean value specifying whether a "close" button should be shown or not. If the "close"
31
+ /// A Boolean value specifying whether a "close" button should be shown or not. If the "close"
32
32
/// button is shown, you should pass in the `isPresented` argument to the initializer,
33
33
/// so that the the "close" button can close the view.
34
34
private var showCloseButton = false
@@ -115,7 +115,7 @@ public struct PopupView: View {
115
115
}
116
116
117
117
extension PopupView {
118
- /// Specifies whether a "close" button should be shown to the right of the popup title. If the "close"
118
+ /// Specifies whether a "close" button should be shown to the right of the popup title. If the "close"
119
119
/// button is shown, you should pass in the `isPresented` argument to the `PopupView`
120
120
/// initializer, so that the the "close" button can close the view.
121
121
/// Defaults to `false`.
You can’t perform that action at this time.
0 commit comments