Skip to content

Commit 689c9ca

Browse files
committed
Merge v.next
2 parents 7dd6ec5 + 7e1f967 commit 689c9ca

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

Sources/ArcGISToolkit/Components/FloatingPanel/FloatingPanel.swift

+2-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ struct FloatingPanel<Content>: View where Content: View {
5959

6060
/// The height of the content.
6161
@State private var height: CGFloat = .minHeight
62-
62+
6363
/// A binding to a Boolean value that determines whether the view is presented.
6464
private var isPresented: Binding<Bool>
6565

@@ -77,6 +77,7 @@ struct FloatingPanel<Content>: View where Content: View {
7777
VStack(spacing: 0) {
7878
if isCompact {
7979
makeHandleView()
80+
Divider()
8081
}
8182
content
8283
.frame(height: height)

Sources/ArcGISToolkit/Components/Popups/MediaPopupElementView.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ struct MediaPopupElementView: View {
2020
var popupElement: MediaPopupElement
2121

2222
@State var isExpanded: Bool = true
23-
23+
2424
var body: some View {
2525
if displayableMediaCount > 0 {
2626
DisclosureGroup(isExpanded: $isExpanded) {

Sources/ArcGISToolkit/Components/Popups/PopupView.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public struct PopupView: View {
2828
/// The `Popup` to display.
2929
private var popup: Popup
3030

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"
3232
/// button is shown, you should pass in the `isPresented` argument to the initializer,
3333
/// so that the the "close" button can close the view.
3434
private var showCloseButton = false
@@ -115,7 +115,7 @@ public struct PopupView: View {
115115
}
116116

117117
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"
119119
/// button is shown, you should pass in the `isPresented` argument to the `PopupView`
120120
/// initializer, so that the the "close" button can close the view.
121121
/// Defaults to `false`.

0 commit comments

Comments
 (0)