Structures
The following structures are available globally.
-
PhotosPicker menu item
See moreDeclaration
Swift
public struct PhotosPickerMenuItem : View
-
FilesPicker menu item
See moreDeclaration
Swift
public struct FilesPickerMenuItem : View
-
Camera menu item
See moreDeclaration
Swift
@available(watchOS, unavailable) public struct PdfScannerMenuItem : View
-
Camera menu item
See moreDeclaration
Swift
@available(watchOS, unavailable) public struct CameraMenuItem : View
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentPreview : UIViewControllerRepresentable
-
Undocumented
See moreDeclaration
Swift
public struct CameraView : UIViewControllerRepresentable
-
View modifier to apply attachment operations to operation button, i.e. + button
See moreDeclaration
Swift
public struct DefaultOperationsModifier : ViewModifier
-
View modifier to apply menu items to a anchor view
See moreDeclaration
Swift
public struct OperationMenuModifier<V> : ViewModifier where V : View
-
View modifier to apply menu items as an overlay to an anchor view
See moreDeclaration
Swift
public struct OperationOverlayModifier<V> : ViewModifier where V : View
-
The configuration for creating an alert view.
See moreDeclaration
Swift
public struct AlertConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct AttributedText : View
-
Undocumented
See moreDeclaration
Swift
public struct MenuSelectionItem
extension MenuSelectionItem: View
extension MenuSelectionItem: _ViewEmptyChecking
-
‘TimelinePreviewItem’ is an item specialized for placement in TimelinePreview.
See moreDeclaration
Swift
public struct TimelinePreviewItem
extension TimelinePreviewItem: View
extension TimelinePreviewItem: _ViewEmptyChecking
-
Column attribute.
See moreDeclaration
Swift
public struct ColumnAttribute
-
A Data Table is a View that is used for displaying data in either list view or grid table view. It supports cell types of
DataImageItem
,DataTextItem
,DataDateItem
,DataTimeItem
,DataDurationItem
andDataListItem
.Code usage:
See morelet model = TableModel(headerData: header, rowData: res, isFirstRowSticky: true, isFirstColumnSticky: true, showListView: false) model.columnAttributes = ... model.didSelectRowAt = { rowIndex in print("Tapped row \(rowIndex)") } model.selectedIndexes = [2, 3] /// set a closure to check whether a dataItem located at (rowIndex, columnIndex) is valid; If it is valid, returns (true, nil); if it is not valid, returns false and an error message which is shown to users. model.validateDataItem = { rowIndex, columnIndex, dataItem in ... } /// set a closure to provide a `DataListItem` type dataItem located at (rowIndex, columnIndex) for an array of Strings and a title for inline editing mode model.listItemDataAndTitle = { rowIndex, columnIndex in ... } /// set a closure to observe a value change for inline editing mode model.valueDidChange = { change in print("valueDidChange: \(change.description)") } DataTable(model: model)
Declaration
Swift
public struct DataTable : View
-
DataTable change for inline editing
See moreDeclaration
Swift
public struct DataTableChange : CustomStringConvertible
-
Data structure for each row in the DataTable
See moreDeclaration
Swift
public struct TableRowItem : Equatable
-
Button for accessory item.
See moreDeclaration
Swift
public struct AccessoryButton : Equatable
-
The
FioriSlider
is a SwiftUI component that provides both a standard slider and a range slider. The standard slider allows users to select a single value, while the range slider allows users to select a range of values with two thumbs.Usage
Standard Slider:
A standard slider consists of a title, a bound value, and a “thumb” (an image that users can drag along a linear “track”. The track represents a continuum between two extremes: a minimum and a maximum value. By default, the formatted minimum value is displayed at the leading end of the slider, and the formatted maximum value is displayed at the trailing end of the slider.
The title is displayed at the top left of the component, while the bound value is displayed at the top right. As users move the thumb, the slider continuously updates its bound value to reflect the thumb’s position.
The following example illustrates a standard slider bound to the value
speed
. The slider uses the default range of0
to100
, with a default step of1
. The minimum value of the range is displayed as the leading accessory view label, while the maximum value is shown as the trailing accessory view label. As the slider updates thespeed
value, the updated value is displayed in a label at the top right of the slider.@State private var speed: Double = 20 FioriSlider( title: "Speed Limit", value: $speed, description: "Simple standard slider" )
You can also use the
range
parameter to specify the value range of the slider. Thestep
parameter allows you to define incremental steps along the slider’s path. ThedecimalPlaces
parameter can be used to manage the decimal places of the slider’s value. To format the bound value for display, use thevalueFormat
parameter. TheleadingValueFormat
parameter customizes the leading value label, which displays the minimum value of the range. Similarly, thetrailingValueFormat
parameter customizes the trailing value label, which displays the maximum value of the range. Additionally, you can use theshowsValueLabel
,showsLeadingAccessory
, andshowsTrailingAccessory
parameters to control the display of the related labels. TheonValueChange
closure passed to the slider provides callbacks when the user drags the slider.@State private var speed: Double = 20 FioriSlider( title: "Speed Limit", value: $speed, range: 10...200, step: 2.5, decimalPlaces: 1, description: "Simple standard slider", valueLabelFormat: "%.1f KM", leadingLabelFormat: "%.1f KM", trailingLabelFormat: "%.1f KM", onValueChange: { isEditing, newSpeed in if !isEditing { print("The speed was changed to: " + String(format: "%.1f", value)) } } )
The example above illustrates a standard slider with a range of
10
to200
and a step increment of2.5
. Therefore, the slider’s increments would be10
,12.5
,15
, and so on. At the same time, the minimum value of the range is formatted and displayed as10.0 KM
. Similarly, the maximum value of the range is formatted and displayed as200.0 KM
. The updated value can be received within theonValueChange
closure callback when the user drags the slider.The slider also uses the
step
to increase or decrease the value when a VoiceOver user adjusts the slider with voice commands.The
FioriSlider
supports a modifier calledaccessibilityAdjustments
, which allows you to adjust the accessibility settings for a standard slider according to the Fiori Slider guidelines.Range Slider:
A range slider consists of a title, a bound lower value, a bound upper value, and two “thumbs” (images that users can drag along a linear “track”). The track represents a continuum between two extremes: a minimum and a maximum value. By default, the formatted lower value is displayed in a text field at the leading end of the slider, and the formatted upper value is displayed in a text field at the trailing end of the slider. The title is displayed at the top left of the component. As users edit the lower or upper value in the text fields or move the thumbs, the slider continuously updates the bound values to reflect the thumbs’ positions.
A single editable range slider is also supported. In this case, only the formatted upper value is displayed in a text field at the trailing end of the slider.
The following example illustrates an editable range slider bound to the lower value
lowerValue
and the upper valueupperValue
. The range slider uses the default range of0
to100
, with a default step of1
. By default, the lower value is displayed in a text field as the leading accessory view, while the upper value is shown in a text field as the trailing accessory view. Both the lower thumb and upper thumb are clearly displayed on the slider track. You can edit these values in the text fields to change the lower and upper values. Alternatively, you can drag the lower thumb to adjust the lower value and drag the upper thumb to change the upper value. The range slider does not display the value label at the top right of the slider by default.@State private var lowerValue: Double = 20 @State private var upperValue: Double = 40 FioriSlider( title: "Editable Range Slider", lowerValue: $lowerValue, upperValue: $upperValue, description: "Simple editable range slider" )
The following example illustrates a single editable range slider bound to the upper value
upperValue
. The range slider uses the default range of0
to100
, with a default step of1
. By default, only the upper value is shown in a text field as the trailing accessory view and one thumb displayed on the slider track. You can edit value in the text fields to change the upper values or drag the thumb to adjust the upper value. The single range slider does not display the value label at the top right of the slider by default.@State private var upperValue: Double = 40 FioriSlider( title: "Single Editable Range Slider", upperValue: $upperValue, description: "Simple Single Editable range slider" )
Similar with standard slider, the range slider also allow you use the
range
parameter to specify the value range of the slider. Thestep
parameter allows you to define incremental steps along the slider’s path. ThedecimalPlaces
parameter can be used to manage the decimal places of the slider’s value. By default, the range slider does not display the value label. However, you can specify what you want to display in thevalueLabel
parameter to show the value label at the top right of the slider. TheshowsLeadingAccessory
andshowsTrailingAccessory
parameters control the display of the leading accessory view and trailing accessory view, respectively. By default, the editable range slider uses a text field as the leading or trailing accessory view. However, you can specify your own view in theleadingAccessory
ortrailingAccessory
parameters to override the default text field. TheshowsLeadingAccessory
andshowsTrailingAccessory
parameters can be used to control the display of the respective accessory views. TheonRangeValueChange
closure passed to the slider provides callbacks when the user drags the slider. TheonValueChange
closure passed to the single editable slider provides callbacks when the user drags the slider.@State private var lowerValue: Double = 20 @State private var upperValue: Double = 40 FioriSlider( title: "Editable Range Slider", lowerValue: $lowerValue, upperValue: $upperValue, range: 10...200, step: 2.5, decimalPlaces: 1, description: "Simple editable range slider", onRangeValueChange: { isEditing, lowerValue, upperValue in if !isEditing { print("Range Slider value was: " + String(format: "%.1f", lowerValue) + " - " + String(format: "%.1f", upperValue)) } } )
The slider also uses the
See morestep
to increase or decrease the value when a VoiceOver user adjusts the slider with voice commands.Declaration
Swift
public struct FioriSlider
extension FioriSlider: View
extension FioriSlider: _ViewEmptyChecking
-
The
See moreFioriSliderTextFieldStyle
structure is used to customize the appearance of the text field in a Fiori Slider. It allows for the configuration of various properties such as border colors, widths, corner radius, font, and foreground colors. Consumers can create their own instances ofFioriSliderTextFieldStyle
to apply custom styles to the slider text field.Declaration
Swift
public struct FioriSliderTextFieldStyle
-
RatingControl
uses images to represent a rating.The number of “On” images denotes the rating. The default “On” image is a filled star while the default “Off” inmage is an unfilled star.
See moreDeclaration
Swift
public struct RatingControl
extension RatingControl: View
extension RatingControl: _ViewEmptyChecking
-
FilterFeedbackBar ResetButton Configuration
See moreDeclaration
Swift
public struct FilterFeedbackBarResetButtonConfiguration : Equatable
-
FilterFeedbackBar slider item value change handler
See moreDeclaration
Swift
public struct SliderValueChangeHandler : Equatable
-
A struct for stylings in the
See moreDimensionSelector
Declaration
Swift
public struct SegmentAttributes
-
A DimensionSelector object is a horizontal control made of multiple segments, each segment functioning as a discrete button. Selection is mutually exclusive.
## Code usage:
See morelet titles = ["intraday: 1min", "one day: 1min", "1year:1day", "3years:1week"] var dimensionSelector: DimensionSelector! var cancellableSet: Set<AnyCancellable> = [] dimensionSelector = DimensionSelector(segmentTitles: segmentTitltes, selectedIndex: stockModel.indexOfStockSeries) dimensionSelector.selectionDidChangePublisher .store(in: &cancellableSet)
Declaration
Swift
public struct _DimensionSelector : View
-
Undocumented
See moreDeclaration
Swift
public struct ActivityButtonView : View
-
Undocumented
See moreDeclaration
Swift
public struct ActivityButtonStyle : ButtonStyle
-
Undocumented
See moreDeclaration
Swift
public struct ActivityControlLayoutContainer<Data, ID, Content> : View where Data : RandomAccessCollection, ID : Hashable, Content : View
-
Undocumented
See moreDeclaration
Swift
public struct WindowReader<Content> : View where Content : View
-
A control which is able to display different views depending on current tap state and responds to action.
Create a Fiori button by providing an action and different labels depending on states.
FioriButton(action: { state in print("Button tapped with state: \(state)") }, label: { state in switch state { case .normal: Text("Normal") case .highlighted: HStack { Image(systemName: "checkmark") Text("Highlighted") } case .selected: HStack { Image(systemName: "checkmark") Text("Selected") } default: Text("Disabled") } })
Create a Fiori button with title text.
FioriButton { _ in "Start" }
Style customization
Create a style that conforms to
FioriButtonStyle
. There are three predefined Fiori button styles:FioriPrimaryButtonStyle
,FioriSecondaryButtonStyle
, andFioriTertiaryButtonStyle
. To set the style to aFioriButton
or to a container within which all Fiori buttons should share the same style, use thefioriButtonStyle(_:)
modifier.struct CustomFioriButtonStyle: FioriButtonStyle { func makeBody(configuration: FioriButtonStyle.Configuration) -> some View { let color: Color switch configuration.state { case .normal: color = Color.preferredColor(.tintColor) case .highlighted, .selected: color = .red default: color = Color.preferredColor(.primary3) } return configuration.label .foregroundColor(.white) .padding(50) .background(Circle().fill(color)) } }
To apply these styles to a
See moreButton
, usePrimaryButtonStyle
,SecondaryButtonStyle
, andTertiaryButtonStyle
instead.Declaration
Swift
public struct FioriButton : View
-
The properties of a Fiori button.
See moreDeclaration
Swift
public struct FioriButtonStyleConfiguration
-
A Fiori button style for the plain button.
See moreDeclaration
Swift
public struct FioriPlainButtonStyle : FioriButtonStyle
-
A Fiori button style for the primary button.
See moreDeclaration
Swift
public struct FioriPrimaryButtonStyle : FioriButtonStyle
-
A Fiori button style for the secondary button.
See moreDeclaration
Swift
public struct FioriSecondaryButtonStyle : FioriButtonStyle
-
A Fiori button style for the tertiary button.
See moreDeclaration
Swift
public struct FioriTertiaryButtonStyle : FioriButtonStyle
-
A type-erased Fiori button style.
See moreDeclaration
Swift
public struct AnyFioriButtonStyle : FioriButtonStyle
-
An object that provides Fiori style color and interaction for
See moreButton
.Declaration
Swift
public struct StatefulButtonStyle : PrimitiveButtonStyle
-
An object that provides Fiori primary button style for
See moreButton
.Declaration
Swift
public struct PrimaryButtonStyle : PrimitiveButtonStyle
-
An object that provides the Fiori secondary button style for
See moreButton
.Declaration
Swift
public struct SecondaryButtonStyle : PrimitiveButtonStyle
-
An object that provides the Fiori tertiary button style for
See moreButton
.Declaration
Swift
public struct TertiaryButtonStyle : PrimitiveButtonStyle
-
Undocumented
See moreDeclaration
Swift
public struct AnyViewModifier : ViewModifier
-
Undocumented
See moreDeclaration
Swift
public struct _AllowActionDefault : _ActionModel
-
Undocumented
See moreDeclaration
Swift
public struct _NextActionDefault : _ActionModel
-
Undocumented
See moreDeclaration
Swift
public struct _CancelActionDefault : _ActionModel
-
Undocumented
See moreDeclaration
Swift
public struct _ResetActionDefault : _ActionModel
-
Undocumented
See moreDeclaration
Swift
public struct _ApplyActionDefault : _ActionModel
-
Undocumented
See moreDeclaration
Swift
public struct _AgreeActionDefault : _ActionModel
-
Undocumented
See moreDeclaration
Swift
public struct _DisagreeActionDefault : _ActionModel
-
Undocumented
See moreDeclaration
Swift
public struct _DenyActionDefault : _ActionModel
-
Undocumented
See moreDeclaration
Swift
public struct _NotNowActionDefault : _ActionModel
-
Undocumented
See moreDeclaration
Swift
public struct _TapToSignActionDefault : _ActionModel
-
Undocumented
See moreDeclaration
Swift
public struct _ReEnterSignatureActionDefault : _ActionModel
-
Undocumented
See moreDeclaration
Swift
public struct _ClearActionDefault : _ActionModel
-
Undocumented
See moreDeclaration
Swift
public struct _SaveActionDefault : _ActionModel
-
Undocumented
See moreDeclaration
Swift
public struct _DoneActionDefault : _ActionModel
-
Undocumented
See moreDeclaration
Swift
public struct _AllStepsActionDefault : _ActionModel
-
This
See more_ScribbleView
is to capture user drawings.Declaration
Swift
public struct _ScribbleView : View
-
Undocumented
See moreDeclaration
Swift
public struct Toast : Equatable
-
Undocumented
See moreDeclaration
Swift
public struct ToastView : View
-
Undocumented
See moreDeclaration
Swift
public struct ToastModifier : ViewModifier
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct ConfigurationViewWrapper : View
extension ConfigurationViewWrapper: _ViewEmptyChecking
-
Data types for
See moreControlState
. Equivalent toUIControl.State
.Declaration
Swift
public struct ControlState : OptionSet
extension ControlState: Hashable
-
The key for storing max number of items value in the environment.
See moreDeclaration
Swift
public struct MaxNumberOfItemsKey : EnvironmentKey
-
Flow Layout
See moreDeclaration
Swift
public struct FlowLayout : Layout
-
SingleView
See moreDeclaration
Swift
public struct SingleView<Content> : IndexedViewContainer where Content : View
-
Conditional single view
See moreDeclaration
Swift
public struct ConditionalSingleView<TrueContent, FalseContent> : IndexedViewContainer where TrueContent : View, FalseContent : View
-
Pair view
See moreDeclaration
Swift
public struct PairView<First, Second> : IndexedViewContainer where First : View, Second : IndexedViewContainer
-
Masonry Layout
See moreDeclaration
Swift
public struct MasonryLayout : Layout
-
Undocumented
See moreDeclaration
Swift
public struct ItemCountPreferenceKey : PreferenceKey
-
Inline view modifier
See moreDeclaration
Swift
public struct InlineModifier<R> : ViewModifier where R : View
-
Undocumented
See moreDeclaration
Swift
public struct ActivationScreen<Title, DescriptionText, Footnote, ActionView, SecondaryActionView, TextInputView> where Title : View, DescriptionText : View, Footnote : View, ActionView : View, SecondaryActionView : View, TextInputView : View
extension ActivationScreen: View
-
Carousel A container view that arranges its child views horizontally, one after the other, with a protion of the next child view visible in the container. It allows users to swipe or scroll through the child views to view fiffeernt piece of content.
Example Initialization and Configuration
See moreCarousel(numberOfColumns: 3, spacing: 8, alignment: .top, isSnapping: true) { ForEach(0..<16, id: \.self) { i in Text("Text \(i)") .font(.title) .padding() .frame(height: 100) .background(Color.gray) } } .padding(8) .border(Color.gray)
Declaration
Swift
public struct Carousel<Content> : View where Content : View
-
Undocumented
See moreDeclaration
Swift
public struct SingleFootnoteIcon<Content> : FootnoteIconList where Content : View
-
Undocumented
See moreDeclaration
Swift
public struct ConditionalSingleFootnoteIcon<TrueContent, FalseContent> : FootnoteIconList where TrueContent : View, FalseContent : View
-
Undocumented
See moreDeclaration
Swift
public struct PairFootnoteIcon<First, Second> : FootnoteIconList where First : View, Second : FootnoteIconList
-
A SwiftUI view that presents the VisionKit document scanner Note that VisionKit doesn’t currently provide a public API to customize the scan view’s appearance or behavior.
See moreDeclaration
Swift
public struct DocumentScannerView : UIViewControllerRepresentable
-
Undocumented
See moreDeclaration
Swift
public struct InfoView<Title, DescriptionText, ActionView, SecondaryActionView> where Title : View, DescriptionText : View, ActionView : View, SecondaryActionView : View
extension InfoView: View
-
Undocumented
See moreDeclaration
Swift
public struct KPIHeader<Content> : View where Content : View
-
A view that arranges its children in a multiple horizontal lines.
The following example shows a simple horizontal stack of five text views:
See moreMHStack(spacing: 10, lineSpacing: 8) { Tag("Started") Tag("PM01") Tag("103-Repair") }
Declaration
-
Undocumented
See moreDeclaration
Swift
public struct OptionListPickerItem
extension OptionListPickerItem: View
-
A page dot indicator
See moreDeclaration
Swift
public struct PageIndicator : View
-
Undocumented
See moreDeclaration
Swift
public struct SearchListPickerItem
extension SearchListPickerItem: View
-
Undocumented
See moreDeclaration
Swift
public struct SearchableListView<CancelActionView, DoneActionView> where CancelActionView : View, DoneActionView : View
extension SearchableListView: View
-
Undocumented
See moreDeclaration
Swift
public struct _FilterFeedbackBar<Items> where Items : View
extension _FilterFeedbackBar: View
-
Configuration for filter feedback bar styling
See moreDeclaration
Swift
public struct FilterFeedbackBarStyleConfiguration
-
Default style for sort and filer menu item
See moreDeclaration
Swift
public struct _DefaultFilterFeedbackBarStyle : _FilterFeedbackBarStyle
-
The view contains filter feedback bar items.
See moreDeclaration
Swift
public struct FilterFeedbackBarItemContainer
extension FilterFeedbackBarItemContainer: View
-
Filter feedback bar item for displaying full configuration list
See moreDeclaration
Swift
public struct FilterFeedbackBarFullConfigurationItem
-
Filter feedback bar item for displaying full configuration list
See moreDeclaration
Swift
public struct SortFilterMenuItemFullConfigurationButton
-
An option set for step state that used for default
See moreStepProgressIndicator
Declaration
Swift
public struct StepProgressIndicatorState : OptionSet
-
Not used by developers.
Declaration
Swift
public struct _DefaultSteps : IndexedViewContainer
-
Not for developers
Declaration
Swift
public struct _StepNode : View
-
Undocumented
See moreDeclaration
Swift
public struct _StepProgressIndicator<Title, ActionView, Steps, CancelActionView> where Title : View, ActionView : View, Steps : IndexedViewContainer, CancelActionView : View
extension _StepProgressIndicator: View
-
Not used by developers.
Declaration
-
Not for developers.
Declaration
Swift
public struct _StepItemsContainer
extension _StepItemsContainer: IndexedViewContainer
extension _StepItemsContainer: View
-
SingleTag
See moreDeclaration
Swift
public struct SingleTag<Content> : TagViewList where Content : View
-
Undocumented
See moreDeclaration
Swift
public struct ConditionalSingleTag<TrueContent, FalseContent> : TagViewList where TrueContent : View, FalseContent : View
-
Undocumented
See moreDeclaration
Swift
public struct PairTag<First, Second> : TagViewList where First : View, Second : TagViewList
-
Undocumented
See moreDeclaration
Swift
public struct _TextInput
extension _TextInput: View
-
TextOrIconView to display TextOrIcon
See moreDeclaration
-
‘TImelineNodeView’ displays an image representing a timeline node.
See moreDeclaration
Swift
public struct TimelineNodeView : View
-
Undocumented
See moreDeclaration
Swift
public struct _UserConsentForm<NextActionView, CancelActionView, AllowActionView, DenyActionView, NotNowActionView, UserConsentPages> where NextActionView : View, CancelActionView : View, AllowActionView : View, DenyActionView : View, NotNowActionView : View, UserConsentPages : IndexedViewContainer
extension _UserConsentForm: View
-
Not used by developers.
See moreDeclaration
Swift
public struct _UserConsentFormsContainer
extension _UserConsentFormsContainer: IndexedViewContainer
extension _UserConsentFormsContainer: View
-
Not used by developers.
See moreDeclaration
Swift
public struct _UserConsentPagesContainer
extension _UserConsentPagesContainer: IndexedViewContainer
extension _UserConsentPagesContainer: View
-
Undocumented
See moreDeclaration
Swift
public struct _UserConsentView<UserConsentForms> where UserConsentForms : IndexedViewContainer
extension _UserConsentView: View
-
Undocumented
See moreDeclaration
Swift
public struct _Action
extension _Action: View
-
Undocumented
See moreDeclaration
Swift
public struct _ActivityItems
extension _ActivityItems: View
-
Undocumented
See moreDeclaration
Swift
public struct _ContactItem<Title, Subtitle, DescriptionText, DetailImage, ActionItems> where Title : View, Subtitle : View, DescriptionText : View, DetailImage : View, ActionItems : View
extension _ContactItem: View
-
Undocumented
See moreDeclaration
Swift
public struct _DurationPicker
extension _DurationPicker: View
-
Undocumented
See moreDeclaration
Swift
public struct _EmptyStateView<Title, DescriptionText, DetailImage, ActionView> where Title : View, DescriptionText : View, DetailImage : View, ActionView : View
extension _EmptyStateView: View
-
Option list picker configuration for styling
Declaration
Swift
public struct OptionListPickerButtonConfiguration
-
Default option list picker style
Declaration
Swift
public struct DefaultOptionListPickerStyle : OptionListPickerStyle
-
The properties of a KPI progress item.
See moreDeclaration
Swift
public struct FioriProgressViewStyleConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct AnyKPIProgressViewStyle : KPIProgressViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct FioriCircularProgressViewStyle : KPIProgressViewStyle
-
The configuration for constructing the list picker.
See moreDeclaration
Swift
public struct _ListPickerItemConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct _ObjectHeader<Title, Subtitle, Tags, BodyText, Footnote, DescriptionText, Status, Substatus, DetailImage, DetailContent> where Title : View, Subtitle : View, Tags : View, BodyText : View, Footnote : View, DescriptionText : View, Status : View, Substatus : View, DetailImage : View, DetailContent : View
extension _ObjectHeader: View
-
Undocumented
See moreDeclaration
Swift
public struct _ObjectItem<Title, Subtitle, Footnote, DescriptionText, Status, Substatus, DetailImage, Icons, Avatars, FootnoteIcons, Tags, ActionView> where Title : View, Subtitle : View, Footnote : View, DescriptionText : View, Status : View, Substatus : View, DetailImage : View, Icons : View, Avatars : View, FootnoteIcons : View, Tags : View, ActionView : View
extension _ObjectItem: View
-
Undocumented
See moreDeclaration
Swift
public struct _ProgressIndicator
extension _ProgressIndicator: View
-
Defines an expandable list which supports multi-level hierarchy with the ability to select a single item.
See moreDeclaration
Swift
@available(iOS 14, *) public struct ExpandableList<Data, Row, Destination> : View where Data : RandomAccessCollection, Row : View, Destination : View, Data.Element : Hashable, Data.Element : Identifiable
-
Undocumented
See moreDeclaration
Swift
public struct _SideBarListItem<Icon, Title, Subtitle, AccessoryIcon> where Icon : View, Title : View, Subtitle : View, AccessoryIcon : View
extension _SideBarListItem: View
-
Undocumented
See moreDeclaration
Swift
public struct _SignatureCaptureView<StartActionView, RestartActionView, CancelActionView, ClearActionView, SaveActionView> where StartActionView : View, RestartActionView : View, CancelActionView : View, ClearActionView : View, SaveActionView : View
extension _SignatureCaptureView: View
-
Undocumented
See moreDeclaration
Swift
public struct _SliderPickerItem
extension _SliderPickerItem: View
-
Undocumented
See moreDeclaration
Swift
public struct _SwitchPickerItem
extension _SwitchPickerItem: View
-
Experimental Fiori switch/toggle style
See moreDeclaration
Swift
public struct FioriToggleStyle : ToggleStyle
-
Undocumented
See moreDeclaration
Swift
public struct _WelcomeScreen<Title, DescriptionText, Subtitle, Footnote, Icon, TextInputView, ActionView, SecondaryActionView> where Title : View, DescriptionText : View, Subtitle : View, Footnote : View, Icon : View, TextInputView : View, ActionView : View, SecondaryActionView : View
extension _WelcomeScreen: View
-
Undocumented
See moreDeclaration
Swift
public struct MenuSelection
extension MenuSelection: View
extension MenuSelection: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct AINoticeBaseStyle : AINoticeStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct AccessoryIconBaseStyle : AccessoryIconStyle
-
Undocumented
See moreDeclaration
Swift
public struct AccessoryIconFioriStyle : AccessoryIconStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct ActionBaseStyle : ActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct ActionFioriStyle : ActionStyle
-
This file provides default fiori style for the component.
- Uncomment the following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct ActiveTrackBaseStyle : ActiveTrackStyle
-
Undocumented
See moreDeclaration
Swift
public struct ActiveTrackFioriStyle : ActiveTrackStyle
-
Undocumented
See moreDeclaration
Swift
public struct ActivityItemBaseStyle : ActivityItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct ActivityItemsBaseStyle : ActivityItemsStyle
-
Undocumented
See moreDeclaration
Swift
public struct ActivityItemsFioriStyle : ActivityItemsStyle
-
Undocumented
See moreDeclaration
Swift
public struct AgreeActionBaseStyle : AgreeActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct AgreeActionFioriStyle : AgreeActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct AllEntriesSectionTitleBaseStyle : AllEntriesSectionTitleStyle
-
Undocumented
See moreDeclaration
Swift
public struct AllEntriesSectionTitleFioriStyle : AllEntriesSectionTitleStyle
-
Undocumented
See moreDeclaration
Swift
public struct AllowActionBaseStyle : AllowActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct AllowActionFioriStyle : AllowActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct ApplyActionBaseStyle : ApplyActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct ApplyActionFioriStyle : ApplyActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentButtonImageBaseStyle : AttachmentButtonImageStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentFootnoteBaseStyle : AttachmentFootnoteStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentFootnoteFioriStyle : AttachmentFootnoteStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentGroupBaseStyle : AttachmentGroupStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentBaseStyle : AttachmentStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentSubtitleBaseStyle : AttachmentSubtitleStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentSubtitleFioriStyle : AttachmentSubtitleStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentThumbnailBaseStyle : AttachmentThumbnailStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentTitleBaseStyle : AttachmentTitleStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentTitleFioriStyle : AttachmentTitleStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttributeBaseStyle : AttributeStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttributeFioriStyle : AttributeStyle
-
Undocumented
See moreDeclaration
Swift
public struct AvatarStackBaseStyle : AvatarStackStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct AvatarsBaseStyle : AvatarsStyle
-
Undocumented
See moreDeclaration
Swift
public struct AvatarsFioriStyle : AvatarsStyle
-
Undocumented
See moreDeclaration
Swift
public struct AvatarsTitleBaseStyle : AvatarsTitleStyle
-
Undocumented
See moreDeclaration
Swift
public struct AvatarsTitleFioriStyle : AvatarsTitleStyle
-
Base Layout style
See moreDeclaration
Swift
public struct BannerMessageBaseStyle : BannerMessageStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct BannerMessageItemModel : Identifiable
-
Undocumented
See moreDeclaration
Swift
public struct BannerMultiMessageSheetBaseStyle : BannerMultiMessageSheetStyle
-
Undocumented
See moreDeclaration
Swift
public struct BodyTextBaseStyle : BodyTextStyle
-
Undocumented
See moreDeclaration
Swift
public struct BodyTextFioriStyle : BodyTextStyle
-
Undocumented
See moreDeclaration
Swift
public struct CancelActionBaseStyle : CancelActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct CancelActionFioriStyle : CancelActionStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct CardBodyBaseStyle : CardBodyStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardBodyFioriStyle : CardBodyStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct CardExtHeaderBaseStyle : CardExtHeaderStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct CardFooterBaseStyle : CardFooterStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct CardHeaderBaseStyle : CardHeaderStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct CardMainHeaderBaseStyle : CardMainHeaderStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct CardMediaBaseStyle : CardMediaStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct CardBaseStyle : CardStyle
-
Undocumented
See moreDeclaration
Swift
public struct CheckoutIndicatorBaseStyle : CheckoutIndicatorStyle
-
Undocumented
See moreDeclaration
Swift
public struct CheckoutIndicatorFioriStyle : CheckoutIndicatorStyle
-
Undocumented
See moreDeclaration
Swift
public struct ClearActionBaseStyle : ClearActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct ClearActionFioriStyle : ClearActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct CloseActionBaseStyle : CloseActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct CloseActionFioriStyle : CloseActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct ContactItemBaseStyle : ContactItemStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct CounterBaseStyle : CounterStyle
-
Undocumented
See moreDeclaration
Swift
public struct CounterFioriStyle : CounterStyle
-
Undocumented
See moreDeclaration
Swift
public struct DateTimePickerBaseStyle : DateTimePickerStyle
-
This file provides default fiori style for the component.
- Uncomment the following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct DecrementActionBaseStyle : DecrementActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct DecrementActionFioriStyle : DecrementActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct DecrementActionActivateStyle : DecrementActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct DecrementActionDeactivateStyle : DecrementActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct CustomNewTitleColorStyle : TitleStyle
-
Undocumented
See moreDeclaration
Swift
public struct DenyActionBaseStyle : DenyActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct DenyActionFioriStyle : DenyActionStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct DescriptionBaseStyle : DescriptionStyle
-
Undocumented
See moreDeclaration
Swift
public struct DescriptionFioriStyle : DescriptionStyle
-
Undocumented
See moreDeclaration
Swift
public struct DescriptionTextBaseStyle : DescriptionTextStyle
-
Undocumented
See moreDeclaration
Swift
public struct DescriptionTextFioriStyle : DescriptionTextStyle
-
Undocumented
See moreDeclaration
Swift
public struct DeselectAllActionBaseStyle : DeselectAllActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct DeselectAllActionFioriStyle : DeselectAllActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct DetailContentBaseStyle : DetailContentStyle
-
Undocumented
See moreDeclaration
Swift
public struct DetailContentFioriStyle : DetailContentStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct DetailImageBaseStyle : DetailImageStyle
-
Undocumented
See moreDeclaration
Swift
public struct DetailImageFioriStyle : DetailImageStyle
-
Undocumented
See moreDeclaration
Swift
public struct DimensionSegmentBaseStyle : DimensionSegmentStyle
-
Undocumented
See moreDeclaration
Swift
public struct DimensionSelectorBaseStyle : DimensionSelectorStyle
-
Undocumented
See moreDeclaration
Swift
public struct DisagreeActionBaseStyle : DisagreeActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct DisagreeActionFioriStyle : DisagreeActionStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct DurationPickerBaseStyle : DurationPickerStyle
-
Undocumented
See moreDeclaration
Swift
public struct EULAViewBaseStyle : EULAViewStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct FilledIconBaseStyle : FilledIconStyle
-
Undocumented
See moreDeclaration
Swift
public struct FilledIconFioriStyle : FilledIconStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct FilterFeedbackBarButtonBaseStyle : FilterFeedbackBarButtonStyle
-
Undocumented
See moreDeclaration
Swift
public struct FilterFeedbackBarItemBaseStyle : FilterFeedbackBarItemStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct FilterFeedbackBarBaseStyle : FilterFeedbackBarStyle
-
Undocumented
See moreDeclaration
Swift
public struct FilterFormViewBaseStyle : FilterFormViewStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct FioriSliderBaseStyle : FioriSliderStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct FootnoteIconsBaseStyle : FootnoteIconsStyle
-
Undocumented
See moreDeclaration
Swift
public struct FootnoteIconsFioriStyle : FootnoteIconsStyle
-
Undocumented
See moreDeclaration
Swift
public struct FootnoteIconsTextBaseStyle : FootnoteIconsTextStyle
-
Undocumented
See moreDeclaration
Swift
public struct FootnoteIconsTextFioriStyle : FootnoteIconsTextStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct FootnoteBaseStyle : FootnoteStyle
-
Undocumented
See moreDeclaration
Swift
public struct FootnoteFioriStyle : FootnoteStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct FormViewBaseStyle : FormViewStyle
-
This file provides default fiori style for the component.
- Uncomment the following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct GreetingTextBaseStyle : GreetingTextStyle
-
Undocumented
See moreDeclaration
Swift
public struct GreetingTextFioriStyle : GreetingTextStyle
-
Undocumented
See moreDeclaration
Swift
public struct HalfStarImageBaseStyle : HalfStarImageStyle
-
Undocumented
See moreDeclaration
Swift
public struct HalfStarImageFioriStyle : HalfStarImageStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct HeaderActionBaseStyle : HeaderActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct HeaderActionFioriStyle : HeaderActionStyle
-
HeaderChart
is a view that displays an object’s title, subtitle, trend, trend image and kpi.Usage
See moreHeaderChart { Text("title") } subtitle: { Text("subtitle") } trend: { Text("trend") } trendImage: { Image(systemName: "person") } kpi: { Text("KPI View") } chart: { Text("Chart View") }
Declaration
Swift
public struct HeaderChart
extension HeaderChart: View
extension HeaderChart: _ViewEmptyChecking
-
Undocumented
Declaration
Swift
public struct HeaderChartBaseStyle : HeaderChartStyle
-
This file provides default fiori style for the component.
- Uncomment the following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct HelperTextBaseStyle : HelperTextStyle
-
Undocumented
See moreDeclaration
Swift
public struct HelperTextFioriStyle : HelperTextStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct IconsBaseStyle : IconsStyle
-
Undocumented
See moreDeclaration
Swift
public struct IconsFioriStyle : IconsStyle
-
Undocumented
See moreDeclaration
Swift
public struct IllustratedMessage
extension IllustratedMessage: View
extension IllustratedMessage: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct IllustratedMessageBaseStyle : IllustratedMessageStyle
-
Vertical layout style of the Illustrated Message. All content is displayed in one column. This is the default layout style
See moreDeclaration
Swift
public struct IllustratedMessageVerticalLayoutStyle : IllustratedMessageStyle
-
Horizontal layout style of the Illustrated Message. Shows content in two columns, with an image on the left and a vertical stack of the other content on the right
See moreDeclaration
Swift
public struct IllustratedMessageHorizontalLayoutStyle : IllustratedMessageStyle
-
Mixed layout style of the Illustrated Message. Shows content in two columns, with an image on the left, a vertical stack of the title and description contents on the right, and the action button stack on the bottom.
See moreDeclaration
Swift
public struct IllustratedMessageMixedLayoutStyle : IllustratedMessageStyle
-
Flexible action button style of the Illustrated Message. The width of the primary action button is hugged and the secondary action button will take the rest of the container width.
See moreDeclaration
Swift
public struct IllustratedMessageFlexibleButtonStyle : IllustratedMessageStyle
-
Full width action button style of the Illustrated Message. The width of both action buttons will take the width of the container.
See moreDeclaration
Swift
public struct IllustratedMessageFullWidthButtonStyle : IllustratedMessageStyle
-
Fixed width action button style of the Illustrated Message. The width of both action buttons will take the width of the container.
See moreDeclaration
Swift
public struct IllustratedMessageFixedWidthButtonStyle : IllustratedMessageStyle
-
This file provides default fiori style for the component.
- Uncomment the following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct InactiveTrackBaseStyle : InactiveTrackStyle
-
Undocumented
See moreDeclaration
Swift
public struct InactiveTrackFioriStyle : InactiveTrackStyle
-
This file provides default fiori style for the component.
- Uncomment the following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct IncrementActionBaseStyle : IncrementActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct IncrementActionFioriStyle : IncrementActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct IncrementActionActivateStyle : IncrementActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct IncrementActionDeactivateStyle : IncrementActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct InformationViewBaseStyle : InformationViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct InformationViewErrorStyle : InformationViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct InformationViewWarningStyle : InformationViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct InformationViewInformationalStyle : InformationViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct InformationViewSuccessStyle : InformationViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct InnerCircleBaseStyle : InnerCircleStyle
-
Undocumented
See moreDeclaration
Swift
public struct InnerCircleFioriStyle : InnerCircleStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct JouleWelcomeScreenBaseStyle : JouleWelcomeScreenStyle
-
Undocumented
See moreDeclaration
Swift
public struct KPIContentBaseStyle : KPIContentStyle
-
Undocumented
See moreDeclaration
Swift
public struct KPIContentFioriStyle : KPIContentStyle
-
Undocumented
See moreDeclaration
Swift
public struct KPIItemBaseStyle : KPIItemStyle
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct KPIProgressItemBaseStyle : KPIProgressItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct KPISubItemBaseStyle : KPISubItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct KPISubItemFioriStyle : KPISubItemStyle
-
The base layout style for
See moreKeyValueFormView
.Declaration
Swift
public struct KeyValueFormViewBaseStyle : KeyValueFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct KeyValueItemBaseStyle : KeyValueItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct KeyValueItemFioriStyle : KeyValueItemStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct KpiCaptionBaseStyle : KpiCaptionStyle
-
Undocumented
See moreDeclaration
Swift
public struct KpiCaptionFioriStyle : KpiCaptionStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct KpiBaseStyle : KpiStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct LabelItemBaseStyle : LabelItemStyle
-
This file provides default fiori style for the component.
- Uncomment the following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct LeadingAccessoryBaseStyle : LeadingAccessoryStyle
-
Undocumented
See moreDeclaration
Swift
public struct LeadingAccessoryFioriStyle : LeadingAccessoryStyle
-
Undocumented
See moreDeclaration
Swift
public struct LinearProgressIndicatorBaseStyle : LinearProgressIndicatorStyle
-
Undocumented
See moreDeclaration
Swift
public struct LinearProgressIndicatorFioriStyle : LinearProgressIndicatorStyle
-
Determinate style
See moreDeclaration
Swift
public struct LinearProgressIndicatorDeterminateStyle : LinearProgressIndicatorStyle
-
Indeterminate style
See moreDeclaration
Swift
public struct LinearProgressIndicatorIndeterminateStyle : LinearProgressIndicatorStyle
-
Error style
See moreDeclaration
Swift
public struct LinearProgressIndicatorErrorStyle : LinearProgressIndicatorStyle
-
Success style
See moreDeclaration
Swift
public struct LinearProgressIndicatorSuccessStyle : LinearProgressIndicatorStyle
-
Undocumented
See moreDeclaration
Swift
public struct LinearProgressIndicatorViewBaseStyle : LinearProgressIndicatorViewStyle
-
Error style
See moreDeclaration
Swift
public struct LinearProgressIndicatorViewErrorStyle : LinearProgressIndicatorViewStyle
-
Success style
See moreDeclaration
Swift
public struct LinearProgressIndicatorViewSuccessStyle : LinearProgressIndicatorViewStyle
-
Determinate style
See moreDeclaration
Swift
public struct LinearProgressIndicatorViewDeterminateStyle : LinearProgressIndicatorViewStyle
-
Indeterminate style
See moreDeclaration
Swift
public struct LinearProgressIndicatorViewIndeterminateStyle : LinearProgressIndicatorViewStyle
-
AI style
See moreDeclaration
Swift
public struct LinearProgressIndicatorViewAIStyle : LinearProgressIndicatorViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct ListPickerContentBaseStyle : ListPickerContentStyle
-
Undocumented
See moreDeclaration
Swift
public struct ListPickerContentFioriStyle : ListPickerContentStyle
-
Undocumented
See moreDeclaration
Swift
public struct ListPickerDestinationBaseStyle : ListPickerDestinationStyle
-
See moreListPickerDestination
is a view that provides a customizable list forListPickerItem
with selection, search filter and rows.Declaration
Swift
public struct ListPickerDestination
extension ListPickerDestination: View
extension ListPickerDestination: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct ListPickerItemBaseStyle : ListPickerItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct LoadingIndicatorBaseStyle : LoadingIndicatorStyle
-
This file provides default fiori style for the component.
- Uncomment the following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct LowerThumbBaseStyle : LowerThumbStyle
-
Undocumented
See moreDeclaration
Swift
public struct LowerThumbFioriStyle : LowerThumbStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct MediaImageBaseStyle : MediaImageStyle
-
Undocumented
See moreDeclaration
Swift
public struct MediaImageFioriStyle : MediaImageStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct MenuSelectionItemBaseStyle : MenuSelectionItemStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct MenuSelectionBaseStyle : MenuSelectionStyle
-
This file provides default fiori style for the component.
- Uncomment the following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct MessageContentBaseStyle : MessageContentStyle
-
Undocumented
See moreDeclaration
Swift
public struct MessageContentFioriStyle : MessageContentStyle
-
This file provides default fiori style for the component.
- Uncomment the following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct MoreActionOverflowBaseStyle : MoreActionOverflowStyle
-
Undocumented
See moreDeclaration
Swift
public struct MoreActionOverflowFioriStyle : MoreActionOverflowStyle
-
Undocumented
See moreDeclaration
Swift
public struct NextActionBaseStyle : NextActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct NextActionFioriStyle : NextActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct NotNowActionBaseStyle : NotNowActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct NotNowActionFioriStyle : NotNowActionStyle
-
The base layout style for
See moreNoteFormView
.Declaration
Swift
public struct NoteFormViewBaseStyle : NoteFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct NowIndicatorNodeBaseStyle : NowIndicatorNodeStyle
-
Undocumented
See moreDeclaration
Swift
public struct NowIndicatorNodeFioriStyle : NowIndicatorNodeStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectHeaderBaseStyle : ObjectHeaderStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct ObjectItemBaseStyle : ObjectItemStyle
-
Card style
See moreDeclaration
Swift
public struct ObjectItemCardStyle : ObjectItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectItemBorderedAction : ActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct OffStarImageBaseStyle : OffStarImageStyle
-
Undocumented
See moreDeclaration
Swift
public struct OffStarImageFioriStyle : OffStarImageStyle
-
Undocumented
See moreDeclaration
Swift
public struct OnStarImageBaseStyle : OnStarImageStyle
-
Undocumented
See moreDeclaration
Swift
public struct OnStarImageFioriStyle : OnStarImageStyle
-
Undocumented
See moreDeclaration
Swift
public struct OptionalTitleBaseStyle : OptionalTitleStyle
-
Undocumented
See moreDeclaration
Swift
public struct OptionalTitleFioriStyle : OptionalTitleStyle
-
Declaration
Swift
public struct OptionsBaseStyle : OptionsStyle
-
Undocumented
See moreDeclaration
Swift
public struct OptionsFioriStyle : OptionsStyle
-
Undocumented
See moreDeclaration
Swift
public struct OuterCircleBaseStyle : OuterCircleStyle
-
Undocumented
See moreDeclaration
Swift
public struct OuterCircleFioriStyle : OuterCircleStyle
-
This file provides default fiori style for the component.
- Uncomment the following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct OverflowActionBaseStyle : OverflowActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct OverflowActionFioriStyle : OverflowActionStyle
-
This file provides default fiori style for the component.
- Uncomment the following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct PlaceholderBaseStyle : PlaceholderStyle
-
Undocumented
See moreDeclaration
Swift
public struct PlaceholderFioriStyle : PlaceholderStyle
-
The base layout style for
See morePlaceholderTextEditor
.Declaration
Swift
public struct PlaceholderTextEditorBaseStyle : PlaceholderTextEditorStyle
-
The base layout style for
See morePlaceholderTextField
.Declaration
Swift
public struct PlaceholderTextFieldBaseStyle : PlaceholderTextFieldStyle
-
Undocumented
See moreDeclaration
Swift
public struct ProcessingIndicatorBaseStyle : ProcessingIndicatorStyle
-
Undocumented
See moreDeclaration
Swift
public struct ProfileHeaderBaseStyle : ProfileHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct ProgressIndicatorProtocolBaseStyle : ProgressIndicatorProtocolStyle
-
Undocumented
See moreDeclaration
Swift
public struct ProgressIndicatorProtocolFioriStyle : ProgressIndicatorProtocolStyle
-
Undocumented
See moreDeclaration
Swift
public struct ProgressIndicatorBaseStyle : ProgressIndicatorStyle
-
Processing style
See moreDeclaration
Swift
public struct ProgressIndicatorProcessingStyle : ProgressIndicatorStyle
-
Loading pausable style displaying the current progress and an icon depending on the paused state
See moreDeclaration
Swift
public struct ProgressIndicatorPausableStyle : ProgressIndicatorStyle
-
Loading stoppable style
See moreDeclaration
Swift
public struct ProgressIndicatorStoppableStyle : ProgressIndicatorStyle
-
This file provides default fiori style for the component.
- Uncomment the following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct ProgressBaseStyle : ProgressStyle
-
Undocumented
See moreDeclaration
Swift
public struct ProgressFioriStyle : ProgressStyle
-
Undocumented
See moreDeclaration
Swift
public struct PromptBaseStyle : PromptStyle
-
Undocumented
See moreDeclaration
Swift
public struct PromptFioriStyle : PromptStyle
-
This file provides default fiori style for the component.
- Uncomment the following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct RangeSliderControlBaseStyle : RangeSliderControlStyle
-
Undocumented
See moreDeclaration
Swift
public struct RatingControlFormViewBaseStyle : RatingControlFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct RatingControlBaseStyle : RatingControlStyle
-
Undocumented
See moreDeclaration
Swift
public struct ReenterSignatureActionBaseStyle : ReenterSignatureActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct ReenterSignatureActionFioriStyle : ReenterSignatureActionStyle
-
This file provides default fiori style for the component.
- Uncomment the following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct ResetActionBaseStyle : ResetActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct ResetActionFioriStyle : ResetActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct ReviewCountLabelBaseStyle : ReviewCountLabelStyle
-
Undocumented
See moreDeclaration
Swift
public struct ReviewCountLabelFioriStyle : ReviewCountLabelStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct Row1BaseStyle : Row1Style
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct Row2BaseStyle : Row2Style
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct Row3BaseStyle : Row3Style
-
Undocumented
See moreDeclaration
Swift
public struct SaveActionBaseStyle : SaveActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct SaveActionFioriStyle : SaveActionStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct SecondaryActionBaseStyle : SecondaryActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct SecondaryActionFioriStyle : SecondaryActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct SecondaryTimestampBaseStyle : SecondaryTimestampStyle
-
Undocumented
See moreDeclaration
Swift
public struct SecondaryTimestampFioriStyle : SecondaryTimestampStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct SectionFooterBaseStyle : SectionFooterStyle
-
The style determines whether disclosureAccessory of SectionFooter is hidden.
See moreDeclaration
Swift
public struct SectionFooterAccessoryStyle : SectionFooterStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct SectionHeaderBaseStyle : SectionHeaderStyle
-
The style determines whether disclosureAccessory of SectionHeader is hidden.
See moreDeclaration
Swift
public struct SectionHeaderAccessoryStyle : SectionHeaderStyle
-
Declaration
Swift
public struct SegmentedControlPickerBaseStyle : SegmentedControlPickerStyle
-
Undocumented
See moreDeclaration
Swift
public struct SelectAllActionBaseStyle : SelectAllActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct SelectAllActionFioriStyle : SelectAllActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct SelectedEntriesSectionTitleBaseStyle : SelectedEntriesSectionTitleStyle
-
Undocumented
See moreDeclaration
Swift
public struct SelectedEntriesSectionTitleFioriStyle : SelectedEntriesSectionTitleStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct SideBarListItemBaseStyle : SideBarListItemStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct SideBarBaseStyle : SideBarStyle
-
The
See moreSideBarItemModel
struct is a data model that represents a side bar item . It conforms to theIdentifiable
,Hashable
, andEquatable
protocols, which allow it to be used in collections and compared for equality.Declaration
Swift
public struct SideBarItemModel : Identifiable, Hashable, Equatable
-
SignatureCaptureView
allows user to sign above the signature line.Usage
See moreSignatureCaptureView(title: "Signature Title", isRequired: true, startSignatureAction: { Button(action: {}, label: { Text("start") }) }, reenterSignatureAction: { Button(action: {}, label: { Text("restart") }) }, cancelAction: { Button(action: {}, label: { Text("cancel") }) }, clearAction: { Button(action: {}, label: { Text("clear") }) }, saveAction: { Button(action: {}, label: { Text("save") }) }, xmark: { Image(systemName: "xmark") }, watermark: { Text("This is a watermark") }, signatureImage: nil, drawingViewMaxHeight: 400, drawingViewBackgroundColor: Color.gray, strokeWidth: 1, appliesTintColorToImage: true, strokeColor: Color.red, signatureLineColor: Color.black, hidesSignatureLine: false, watermarkAlignment: .trailing, addsTimestampInImage: true, timestampFormatter: nil, cropsImage: false) { img in let imgSaver = ImageSaver() imgSaver.writeToPhotoAlbum(image: img) }
Declaration
Swift
public struct SignatureCaptureView
extension SignatureCaptureView: View
extension SignatureCaptureView: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct SignatureCaptureViewBaseStyle : SignatureCaptureViewStyle
-
Undocumented
See moreDeclaration
-
Undocumented
Declaration
Swift
public struct SingleStepBaseStyle : SingleStepStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct SortFilterViewBaseStyle : SortFilterViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct StartSignatureActionBaseStyle : StartSignatureActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct StartSignatureActionFioriStyle : StartSignatureActionStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct StatusBaseStyle : StatusStyle
-
Undocumented
See moreDeclaration
Swift
public struct StatusFioriStyle : StatusStyle
-
A convenient
See moreStatusStyle
to set a foreground color forStatus
Declaration
Swift
public struct StatusColorStyleStyle : StatusStyle
-
Undocumented
See moreDeclaration
Swift
public struct StepProgressIndicatorBaseStyle : StepProgressIndicatorStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct StepperFieldBaseStyle : StepperFieldStyle
-
Undocumented
See moreDeclaration
Swift
public struct StepperViewBaseStyle : StepperViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct StepperViewFocusedStyle : StepperViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct SubAttributeBaseStyle : SubAttributeStyle
-
Undocumented
See moreDeclaration
Swift
public struct SubAttributeFioriStyle : SubAttributeStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct SubstatusBaseStyle : SubstatusStyle
-
Undocumented
See moreDeclaration
Swift
public struct SubstatusFioriStyle : SubstatusStyle
-
A convenient
See moreSubstatusStyle
to set a foreground color forSubstatus
Declaration
Swift
public struct SubstatusColorStyle : SubstatusStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct SubtitleBaseStyle : SubtitleStyle
-
Undocumented
See moreDeclaration
Swift
public struct SubtitleFioriStyle : SubtitleStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct SwitchBaseStyle : SwitchStyle
-
Undocumented
See moreDeclaration
Swift
public struct SwitchFioriStyle : SwitchStyle
-
Undocumented
See moreDeclaration
Swift
public struct SwitchViewBaseStyle : SwitchViewStyle
-
Light tag style
Declaration
Swift
public struct LightTagStyle : TagStyle
-
Dark tag style.
Declaration
Swift
public struct DarkTagStyle : TagStyle
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct TagStyleConfiguration
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct TagsBaseStyle : TagsStyle
-
This file provides default fiori style for the component.
- Uncomment the following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct TertiaryActionBaseStyle : TertiaryActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct TertiaryActionFioriStyle : TertiaryActionStyle
-
The base layout style for
See moreTextFieldFormView
.Declaration
Swift
public struct TextFieldFormViewBaseStyle : TextFieldFormViewStyle
-
The base layout style for
See moreTextInputField
.Declaration
Swift
public struct TextInputFieldBaseStyle : TextInputFieldStyle
-
Number style
See moreDeclaration
Swift
public struct TextInputFieldNumberStyle : TextInputFieldStyle
-
This file provides default fiori style for the component.
- Uncomment the following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct TextInputBaseStyle : TextInputStyle
-
Undocumented
See moreDeclaration
Swift
public struct TextInputFioriStyle : TextInputStyle
-
Declaration
Swift
public struct TextViewBaseStyle : TextViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct TextViewFioriStyle : TextViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineMarkerBaseStyle : TimelineMarkerStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineNodeBaseStyle : TimelineNodeStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineNodeFioriStyle : TimelineNodeStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineNowIndicatorBaseStyle : TimelineNowIndicatorStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelinePreviewItemBaseStyle : TimelinePreviewItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelinePreviewBaseStyle : TimelinePreviewStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineBaseStyle : TimelineStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimestampBaseStyle : TimestampStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimestampFioriStyle : TimestampStyle
-
The base layout style for
See moreTitleFormView
.Declaration
Swift
public struct TitleFormViewBaseStyle : TitleFormViewStyle
-
This file provides default fiori style for the component.
- Uncomment fhe following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct TitleBaseStyle : TitleStyle
-
Undocumented
See moreDeclaration
Swift
public struct TitleFioriStyle : TitleStyle
-
Undocumented
See moreDeclaration
Swift
public struct ToastMessageBaseStyle : ToastMessageStyle
-
Undocumented
See moreDeclaration
Swift
public struct TopDividerBaseStyle : TopDividerStyle
-
Undocumented
See moreDeclaration
Swift
public struct TopDividerFioriStyle : TopDividerStyle
-
This file provides default fiori style for the component.
- Uncomment the following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct TrailingAccessoryBaseStyle : TrailingAccessoryStyle
-
Undocumented
See moreDeclaration
Swift
public struct TrailingAccessoryFioriStyle : TrailingAccessoryStyle
-
Undocumented
See moreDeclaration
Swift
public struct TrendImageBaseStyle : TrendImageStyle
-
Undocumented
See moreDeclaration
Swift
public struct TrendImageFioriStyle : TrendImageStyle
-
Undocumented
See moreDeclaration
Swift
public struct TrendBaseStyle : TrendStyle
-
Undocumented
See moreDeclaration
Swift
public struct TrendFioriStyle : TrendStyle
-
This file provides default fiori style for the component.
- Uncomment the following code.
- Implement layout and style in corresponding places.
- Delete
.generated
from file name. - Move this file to
_FioriStyles
folder underFioriSwiftUICore
.
Declaration
Swift
public struct UpperThumbBaseStyle : UpperThumbStyle
-
Undocumented
See moreDeclaration
Swift
public struct UpperThumbFioriStyle : UpperThumbStyle
-
Undocumented
See moreDeclaration
Swift
public struct UserConsentFormBaseStyle : UserConsentFormStyle
-
Undocumented
See moreDeclaration
Swift
public struct UserConsentPageBaseStyle : UserConsentPageStyle
-
Undocumented
See moreDeclaration
Swift
public struct UserConsentViewBaseStyle : UserConsentViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct ValueLabelBaseStyle : ValueLabelStyle
-
Undocumented
See moreDeclaration
Swift
public struct ValueLabelFioriStyle : ValueLabelStyle
-
Undocumented
See moreDeclaration
Swift
public struct ValuePickerBaseStyle : ValuePickerStyle
-
Undocumented
See moreDeclaration
Swift
public struct ValueBaseStyle : ValueStyle
-
Undocumented
See moreDeclaration
Swift
public struct ValueFioriStyle : ValueStyle
-
Undocumented
See moreDeclaration
Swift
public struct WatermarkBaseStyle : WatermarkStyle
-
Undocumented
See moreDeclaration
Swift
public struct WatermarkFioriStyle : WatermarkStyle
-
Undocumented
See moreDeclaration
Swift
public struct WelcomeScreenBaseStyle : WelcomeScreenStyle
-
Undocumented
See moreDeclaration
Swift
public struct XmarkBaseStyle : XmarkStyle
-
Undocumented
See moreDeclaration
Swift
public struct XmarkFioriStyle : XmarkStyle
-
AINotice
is a SwiftUI view indicating if content is AI-supported or AI-generated. It can include an icon, a description, and an action label for accessing more details. If the icon or description is not set, a default value will be used. Action label has no default value and has to be set to be used.Usage
See more@State var showsAction = false KeyValueItem { Text("Marital Status Since*") } value: { Text(self.maritalStatusSince) } .id(self.maritalStatusSinceId) .aiNoticeView(isPresented: self.$showAINotice, icon: Image(fioriName: "fiori.ai"), description: "AI Notice with icon. ", actionLabel: "View more details", viewMoreAction: self.toggleShowSheet) .sheet(isPresented: self.$showBottomSheet) { Text("detail information") .presentationDetents([.height(250), .medium]) .presentationDragIndicator(.visible) }
Declaration
-
Undocumented
See moreDeclaration
Swift
public struct AINoticeConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct AINoticeFioriStyle : AINoticeStyle
-
Undocumented
See moreDeclaration
Swift
public struct AccessoryIcon
extension AccessoryIcon: View
extension AccessoryIcon: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct AccessoryIconConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct ActionConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct ActiveTrack
extension ActiveTrack: View
extension ActiveTrack: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct ActiveTrackConfiguration
-
ActivityItem
provides a customizable activity item with an icon and a subtitle.Usage
See moreActivityItem(icon: Image(systemName: "phone"), subtitle: AttributedString("phone"))
Declaration
Swift
public struct ActivityItem
extension ActivityItem: View
extension ActivityItem: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct ActivityItemConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct ActivityItemFioriStyle : ActivityItemStyle
-
ActivityItems
provides a view that shows several items with action.Usage
See moreActivityItems(activityItems: [ .init(type: .phone, didSelectActivityItem: { print("click phone") }) ])
Declaration
Swift
public struct ActivityItems
extension ActivityItems: View
extension ActivityItems: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct ActivityItemsConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct AgreeAction
extension AgreeAction: View
extension AgreeAction: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct AgreeActionConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct AllEntriesSectionTitle
extension AllEntriesSectionTitle: View
extension AllEntriesSectionTitle: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct AllEntriesSectionTitleConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct AllowAction
extension AllowAction: View
extension AllowAction: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct AllowActionConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct ApplyAction
extension ApplyAction: View
extension ApplyAction: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct ApplyActionConfiguration
-
Attachment
provides thumbnail and information about an attachment.Usage
See moreAttachment { QuickLookThumbnail(physicalUrl: fileURL) } attachmentTitle: { Text("Leaf") } attachmentSubtitle: { Text("15MB") } attachmentFootnote: { Text("Aug 15, 2024") } Attachment { QuickLookThumbnail(thumbnailImage: : Image(systemName: "leaf")) } attachmentTitle: { Text("Leaf") } attachmentSubtitle: { Text("15MB") } attachmentFootnote: { Text("Aug 15, 2024") } Attachment { Image(systemName: "leaf") .resizable() } attachmentTitle: { Text("Leaf") } attachmentSubtitle: { Text("15MB") } attachmentFootnote: { Text("Aug 15, 2024") }
Declaration
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentFioriStyle : AttachmentStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentButtonImage
extension AttachmentButtonImage: View
extension AttachmentButtonImage: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentButtonImageConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentButtonImageFioriStyle : AttachmentButtonImageStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentFootnote
extension AttachmentFootnote: View
extension AttachmentFootnote: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentFootnoteConfiguration
-
AttachmentGroup
provides thubnail and information about an attachment.Usage
See moretodo: code here
Declaration
Swift
public struct AttachmentGroup
extension AttachmentGroup: View
extension AttachmentGroup: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentGroupConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentGroupFioriStyle : AttachmentGroupStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentSubtitle
extension AttachmentSubtitle: View
extension AttachmentSubtitle: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentSubtitleConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentThumbnail
extension AttachmentThumbnail: View
extension AttachmentThumbnail: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentThumbnailConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentThumbnailFioriStyle : AttachmentThumbnailStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentTitle
extension AttachmentTitle: View
extension AttachmentTitle: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentTitleConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct AttributeConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct AvatarStack
extension AvatarStack: View
extension AvatarStack: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct AvatarStackConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct AvatarStackFioriStyle : AvatarStackStyle
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct AvatarsConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct AvatarsTitle
extension AvatarsTitle: View
extension AvatarsTitle: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct AvatarsTitleConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct BannerMessage
extension BannerMessage: View
extension BannerMessage: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct BannerMessageConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct BannerMessageFioriStyle : BannerMessageStyle
-
Undocumented
See moreDeclaration
Swift
public struct BannerMultiMessageSheet
extension BannerMultiMessageSheet: View
extension BannerMultiMessageSheet: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct BannerMultiMessageSheetConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct BannerMultiMessageSheetFioriStyle : BannerMultiMessageSheetStyle
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct BodyTextConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct CancelAction
extension CancelAction: View
extension CancelAction: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct CancelActionConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct CardConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct CardBodyConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct CardExtHeader
extension CardExtHeader: View
extension CardExtHeader: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct CardExtHeaderConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct CardExtHeaderFioriStyle : CardExtHeaderStyle
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct CardFooterConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct CardFooterFioriStyle : CardFooterStyle
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct CardHeaderConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct CardHeaderFioriStyle : CardHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardMainHeader
extension CardMainHeader: View
extension CardMainHeader: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct CardMainHeaderConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct CardMainHeaderFioriStyle : CardMainHeaderStyle
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct CardMediaConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct CardMediaFioriStyle : CardMediaStyle
-
CheckoutIndicator
provides a circular indicator that shows the state of a process.Usage
See more@State var displayState = DisplayState.inProgress CheckoutIndicator(displayState: self.$displayState)
Declaration
Swift
public struct CheckoutIndicator
extension CheckoutIndicator: View
extension CheckoutIndicator: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct CheckoutIndicatorConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct ClearAction
extension ClearAction: View
extension ClearAction: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct ClearActionConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct CloseAction
extension CloseAction: View
extension CloseAction: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct CloseActionConfiguration
-
ContactItem
provides a view that shows information related to contact.Usage
See moreContactItem(title: "Headline only example", description: "One line of text description is baseline aligned.", actionItems: [.init(type: .phone, didSelectActivityItem: { print("tap phone") }), .init(type: .videoCall, didSelectActivityItem: { print("tap videoCall") }), .init(type: .message, didSelectActivityItem: { print("tap message") })]) ContactItem { Text("Headline only example") } subtitle: { Text("One line of text description is baseline aligned.") } description: { Text("Description") } detailImage: { Image("person_square4").resizable() } actionItems: { ActivityItems(activityItems: [.init(type: .phone, didSelectActivityItem: { print("tap phone") })]) }
Declaration
Swift
public struct ContactItem
extension ContactItem: View
extension ContactItem: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct ContactItemConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct ContactItemFioriStyle : ContactItemStyle
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct CounterConfiguration
-
DateTimePicker
provides a title and value label with Fiori styling and aDatePicker
.Usage
See more@State var selection: Date = .init(timeIntervalSince1970: 0.0) @State var isRequired = false @State var showsErrorMessage = false DateTimePicker(title: "Default", isRequired: self.isRequired, selectedDate: self.$selection) .informationView(isPresented: self.$showsErrorMessage, description: AttributedString("The Date should be before December.")) .informationViewStyle(.informational)
Declaration
Swift
public struct DateTimePicker
extension DateTimePicker: View
extension DateTimePicker: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct DateTimePickerConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct DateTimePickerFioriStyle : DateTimePickerStyle
-
Undocumented
See moreDeclaration
Swift
public struct DecrementAction
extension DecrementAction: View
extension DecrementAction: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct DecrementActionConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct DenyActionConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct Description
extension Description: View
extension Description: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct DescriptionConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct DescriptionText
extension DescriptionText: View
extension DescriptionText: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct DescriptionTextConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct DeselectAllAction
extension DeselectAllAction: View
extension DeselectAllAction: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct DeselectAllActionConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct DetailContent
extension DetailContent: View
extension DetailContent: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct DetailContentConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct DetailImage
extension DetailImage: View
extension DetailImage: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct DetailImageConfiguration
-
See moreDimensionSegment
provides a customizable segment forDimensionSelector
.Declaration
Swift
public struct DimensionSegment
extension DimensionSegment: View
extension DimensionSegment: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct DimensionSegmentConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct DimensionSegmentFioriStyle : DimensionSegmentStyle
-
DimensionSelector
is a horizontal control containing multiple segments, each segment functioning as a discrete button. Selection is mutually exclusive.## Usage:
See morelet titles = ["intraday: 1min", "one day: 1min", "1year:1day", "3years:1week"] @State var selectedIndex: Int? = 0 @ObservedObject var stockModel = Tests.stockModels[0] DimensionSelector(titles: titles, selectedIndex: $selectedIndex) .onChange(of: selectedIndex) { stockModel.indexOfStockSeries = selectedIndex ?? -1 }
Declaration
Swift
public struct DimensionSelector
extension DimensionSelector: View
extension DimensionSelector: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct DimensionSelectorConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct DimensionSelectorFioriStyle : DimensionSelectorStyle
-
Undocumented
See moreDeclaration
Swift
public struct DisagreeAction
extension DisagreeAction: View
extension DisagreeAction: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct DisagreeActionConfiguration
-
DurationPicker
provides a wheel stylePicker
with Fiori styling to select a duration.Usage
See more@State var selection: Int = 0 var formatter: MeasurementFormatter { let formatter = MeasurementFormatter() formatter.locale = Locale(identifier: "zh-CN") formatter.unitStyle = .long formatter.unitOptions = .providedUnit return formatter } DurationPicker(selection: self.$selection, maximumMinutes: 124, minimumMinutes: 60, minuteInterval: 2) .measurementFormatter(self.formatter)
Declaration
Swift
public struct DurationPicker
extension DurationPicker: View
extension DurationPicker: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct DurationPickerConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct DurationPickerFioriStyle : DurationPickerStyle
-
EULAView
is used to display the End User License Agreement, EULA.Usage
See moreEULAView(title: "EULA", bodyText: "BodyText", didAgree: { print("EULAView - didAgree") }, didDisagree: { print("EULAView - didDisagree") }, didCancel: { presentationMode.wrappedValue.dismiss() })
Declaration
-
Undocumented
See moreDeclaration
Swift
public struct EULAViewConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct EULAViewFioriStyle : EULAViewStyle
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct FilledIconConfiguration
-
The
FilterFeedbackBar
is a SwiftUI component contains FilterFeedbackBarItem. When tapping FilterFeedbackBarItem, it will show some sort and filter types of controls, List Picker, Switch, Slider, Value Picker, Stepper, Date Picker.Usage
items
is the data for the FilterFeedbackBar.onUpdate
is the callback function is triggered when the data is updated.
See more@State var items: [[SortFilterItem]] = [ [.switch(item: .init(name: "Favorite", value: true, icon: "heart.fill"), showsOnFilterFeedbackBar: true), .slider(item: .init(name: "User Stories", value: 10, minimumValue: 0, maximumValue: 100, formatter: "Stories", icon: "number"), showsOnFilterFeedbackBar: true)] ] FilterFeedbackBar(items: self.$items) {}
Declaration
Swift
public struct FilterFeedbackBar
extension FilterFeedbackBar: View
extension FilterFeedbackBar: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct FilterFeedbackBarConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct FilterFeedbackBarFioriStyle : FilterFeedbackBarStyle
-
The
FilterFeedbackBarButton
is a SwiftUI component for item’s options that are used in FilterFeedbackBar when the item’s type isSortFilterItem.picker
. Typically not used by application developer.Usage
icon
is the leading image in the button.title
is the title for the option.isSelected
is the state of the button whether it is selected. The style of the button will change based on its state.
See moreFilterFeedbackBarButton( icon: Image(systemName: "checkmark"), title: "Status", isSelected: true)
Declaration
Swift
public struct FilterFeedbackBarButton
extension FilterFeedbackBarButton: View
extension FilterFeedbackBarButton: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct FilterFeedbackBarButtonConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct FilterFeedbackBarButtonFioriStyle : FilterFeedbackBarButtonStyle
-
The
FilterFeedbackBarItem
is a SwiftUI component for items in FilterFeedbackBar. Typically not used by application developer.Usage
icon
is the leading image in the button.title
is the button title.accessoryIcon
is the trailing image in the button.isSelected
is the state of the button whether the item has selected value. The style of the button will change based on its state.
See moreFilterFeedbackBarItem( icon: Image(systemName: "clock"), title: "Item Title", accessoryIcon: Image(systemName: "chevron.down"), isSelected: self.item.isChecked)
Declaration
Swift
public struct FilterFeedbackBarItem
extension FilterFeedbackBarItem: View
extension FilterFeedbackBarItem: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct FilterFeedbackBarItemConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct FilterFeedbackBarItemFioriStyle : FilterFeedbackBarItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct FilterFormView
extension FilterFormView: View
extension FilterFormView: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct FilterFormViewConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct FilterFormViewFioriStyle : FilterFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct FioriSliderConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct FioriSliderFioriStyle : FioriSliderStyle
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct FootnoteConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct FootnoteIcons
extension FootnoteIcons: View
extension FootnoteIcons: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct FootnoteIconsConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct FootnoteIconsText
extension FootnoteIconsText: View
extension FootnoteIconsText: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct FootnoteIconsTextConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct FormViewConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct FormViewFioriStyle : FormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct GreetingText
extension GreetingText: View
extension GreetingText: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct GreetingTextConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct HalfStarImage
extension HalfStarImage: View
extension HalfStarImage: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct HalfStarImageConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct HeaderAction
extension HeaderAction: View
extension HeaderAction: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct HeaderActionConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct HeaderChartConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct HeaderChartFioriStyle : HeaderChartStyle
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct HelperTextConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct IconConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct IconsConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct IllustratedMessageConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct IllustratedMessageFioriStyle : IllustratedMessageStyle
-
Undocumented
See moreDeclaration
Swift
public struct InactiveTrack
extension InactiveTrack: View
extension InactiveTrack: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct InactiveTrackConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct IncrementAction
extension IncrementAction: View
extension IncrementAction: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct IncrementActionConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct InformationView
extension InformationView: View
extension InformationView: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct InformationViewConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct InformationViewFioriStyle : InformationViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct InnerCircle
extension InnerCircle: View
extension InnerCircle: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct InnerCircleConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct JouleWelcomeScreen
extension JouleWelcomeScreen: View
extension JouleWelcomeScreen: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct JouleWelcomeScreenConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct JouleWelcomeScreenFioriStyle : JouleWelcomeScreenStyle
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct KPIContentConfiguration
-
KPIItem
enables a developer to present “KPI” information in a formatted manner consistent with the Fiori Design Language.Usage
See morestruct KPISubItemModelImplementation: KPISubItemModel { let id: UUID let kPISubItemValue: TextOrIcon let kPISubItemType: KPISubitemType init(id: UUID = UUID(), kPISubItemValue: TextOrIcon, kPISubItemType: KPISubitemType) { self.id = id self.kPISubItemValue = kPISubItemValue self.kPISubItemType = kPISubItemType } } private var item: [KPISubItemModelImplementation] = [ KPISubItemModelImplementation(kPISubItemValue: .icon(Image(systemName: "triangleshape.fill")), kPISubItemType: KPISubitemType.icon), KPISubItemModelImplementation(kPISubItemValue: .text("123"), kPISubItemType: KPISubitemType.metric), KPISubItemModelImplementation(kPISubItemValue: .text("USD"), kPISubItemType: KPISubitemType.unit) ] KPIItem(kpiCaption: "abc", items: item, proposedViewSize: .small, alignment: .leading)
Declaration
-
Undocumented
See moreDeclaration
Swift
public struct KPIItemConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct KPIItemFioriStyle : KPIItemStyle
-
KPIProgressItem
enables a developer to present “KPI” information in a formatted manner consistent with the Fiori Design LanguageUsage
See morelet percentData = KPIItemData.percent(0.65) let fractionData = KPIItemData.fraction(76, 90, numberFormatterProvider.numberFormatter) KPIProgressItem(kpiCaption: "Completed", data: .constant(percentData)) KPIProgressItem(kpiCaption: "In progress", data: .constant(fractionData), chartSize: .small)
Declaration
Swift
public struct KPIProgressItem
extension KPIProgressItem: View
extension KPIProgressItem: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct KPIProgressItemConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct KPIProgressItemFioriStyle : KPIProgressItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct KPISubItemConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct KeyConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct KeyValueFormView
extension KeyValueFormView: View
extension KeyValueFormView: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct KeyValueFormViewConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct KeyValueFormViewFioriStyle : KeyValueFormViewStyle
-
KeyValueItem
provides a customizable activity item with a key and a value.Usage
See moreKeyValueItem(key: { Text("key 1") }, value: { Text("value 1") }, axis: .vertical)
Declaration
Swift
public struct KeyValueItem
extension KeyValueItem: View
extension KeyValueItem: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct KeyValueItemConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct KpiConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct KpiCaptionConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct LabelItemConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct LabelItemFioriStyle : LabelItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct LeadingAccessory
extension LeadingAccessory: View
extension LeadingAccessory: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct LeadingAccessoryConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct LineConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct LinearProgressIndicator
extension LinearProgressIndicator: View
extension LinearProgressIndicator: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct LinearProgressIndicatorConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct LinearProgressIndicatorView
extension LinearProgressIndicatorView: View
extension LinearProgressIndicatorView: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct LinearProgressIndicatorViewConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct LinearProgressIndicatorViewFioriStyle : LinearProgressIndicatorViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct ListPickerContent
extension ListPickerContent: View
extension ListPickerContent: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct ListPickerContentConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct ListPickerDestinationConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct ListPickerDestinationFioriStyle : ListPickerDestinationStyle
-
ListPickerItem
is a view that provides aNavigationLink
with a title and selected value(s). AndListPickerDestination
is recommended to be used as its destination, for which selection, search filter and customized rows are supported.Usage
See morelet data = ["first", "second", "third"] var body: some View { ListPickerItem(title: { Text("title") }, value: { Text("value") }, axis: .vertical) { ListPickerDestination(data, id: \.self, selection: $selection, isTrackingLiveChanges: true, searchFilter: { f, s in f.contains(s) }, rowContent: { Text($0) }) } } // If you want grouped different sections, the protocol `ListPickerSectionModel` is need be implemented for your element of data. struct ListPickerSection: ListPickerSectionModel {} let data = [ListPickerSection(title: "Section 1", items: ["first", "second", "third"]), ListPickerSection(title: "Section 2", items: ["apple", "banana", "orange"])] var body: some View { ListPickerItem(title: { Text("title") }, value: { Text("value") }, axis: .vertical) { ListPickerDestination(data, id: \.self, selection: $selection, isTrackingLiveChanges: true, searchFilter: { f, s in f.contains(s) }, rowContent: { Text($0) }) } }
Declaration
Swift
public struct ListPickerItem
extension ListPickerItem: View
extension ListPickerItem: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct ListPickerItemConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct ListPickerItemFioriStyle : ListPickerItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct LoadingIndicator
extension LoadingIndicator: View
extension LoadingIndicator: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct LoadingIndicatorConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct LoadingIndicatorFioriStyle : LoadingIndicatorStyle
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct LowerThumbConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct MediaImageConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct MenuSelectionConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct MenuSelectionFioriStyle : MenuSelectionStyle
-
Undocumented
See moreDeclaration
Swift
public struct MenuSelectionItemConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct MenuSelectionItemFioriStyle : MenuSelectionItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct MessageContent
extension MessageContent: View
extension MessageContent: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct MessageContentConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct MoreActionOverflow
extension MoreActionOverflow: View
extension MoreActionOverflow: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct MoreActionOverflowConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct NextActionConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct NodeConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct NotNowAction
extension NotNowAction: View
extension NotNowAction: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct NotNowActionConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct NoteFormView
extension NoteFormView: View
extension NoteFormView: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct NoteFormViewConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct NoteFormViewFioriStyle : NoteFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct NowIndicatorNode
extension NowIndicatorNode: View
extension NowIndicatorNode: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct NowIndicatorNodeConfiguration
-
ObjectHeader
is a view that displays an object’s title, subtitle, tags, body text, footnote, description, status, substatus, detail image and detail content.Usage
See moreObjectHeader { Text("title") } subtitle: { Text("subtitle") } tags: { Text("tag01") } bodyText: { Text("body") } footnote: { Text("footnote") } descriptionText: { Text("description") } status: { Text("status") } substatus: { Text("substatus") } detailImage: { Image(systemName: "person") } detailContent: { Text("detail content") }
Declaration
Swift
public struct ObjectHeader
extension ObjectHeader: View
extension ObjectHeader: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct ObjectHeaderConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct ObjectHeaderFioriStyle : ObjectHeaderStyle
-
A view that displays information of an object.
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct ObjectItemConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct ObjectItemFioriStyle : ObjectItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct OffStarImage
extension OffStarImage: View
extension OffStarImage: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct OffStarImageConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct OnStarImage
extension OnStarImage: View
extension OnStarImage: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct OnStarImageConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct OptionalTitle
extension OptionalTitle: View
extension OptionalTitle: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct OptionalTitleConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct OptionsConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct OuterCircle
extension OuterCircle: View
extension OuterCircle: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct OuterCircleConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct OverflowAction
extension OverflowAction: View
extension OverflowAction: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct OverflowActionConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct Placeholder
extension Placeholder: View
extension Placeholder: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct PlaceholderConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct PlaceholderTextEditor
extension PlaceholderTextEditor: View
extension PlaceholderTextEditor: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct PlaceholderTextEditorConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct PlaceholderTextEditorFioriStyle : PlaceholderTextEditorStyle
-
Undocumented
See moreDeclaration
Swift
public struct PlaceholderTextField
extension PlaceholderTextField: View
extension PlaceholderTextField: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct PlaceholderTextFieldConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct PlaceholderTextFieldFioriStyle : PlaceholderTextFieldStyle
-
ProcessingIndicator
provides a circular indeterminate indicator with an optional title below the indicator.Usage
See moreProcessingIndicator(optionalTitle: "Processing")
Declaration
Swift
public struct ProcessingIndicator
extension ProcessingIndicator: View
extension ProcessingIndicator: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct ProcessingIndicatorConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct ProcessingIndicatorFioriStyle : ProcessingIndicatorStyle
-
Undocumented
See moreDeclaration
Swift
public struct ProfileHeader
extension ProfileHeader: View
extension ProfileHeader: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct ProfileHeaderConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct ProfileHeaderFioriStyle : ProfileHeaderStyle
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct ProgressConfiguration
-
ProgressIndicator
provides a circular progress indicator with custom styles for processing, pausable, and stoppable indicators.Usage
See more@State var progress: Double = 0.0 @State var isPaused: Bool = false ProgressIndicator(progress: $progress) .progressIndicatorStyle(.processing) ProgressIndicator(progress: $progress) .progressIndicatorStyle(ProgressIndicatorPausableStyle(isPaused: self.$isPaused))
Declaration
Swift
public struct ProgressIndicator
extension ProgressIndicator: View
extension ProgressIndicator: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct ProgressIndicatorConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct ProgressIndicatorFioriStyle : ProgressIndicatorStyle
-
Undocumented
See moreDeclaration
Swift
public struct ProgressIndicatorProtocol
extension ProgressIndicatorProtocol: View
extension ProgressIndicatorProtocol: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct ProgressIndicatorProtocolConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct PromptConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct RangeSliderControl
extension RangeSliderControl: View
extension RangeSliderControl: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct RangeSliderControlConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct RangeSliderControlFioriStyle : RangeSliderControlStyle
-
Undocumented
See moreDeclaration
Swift
public struct RatingControlConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct RatingControlFioriStyle : RatingControlStyle
-
The form view which contains a title, rating control, and a subtitle
See moreDeclaration
Swift
public struct RatingControlFormView
extension RatingControlFormView: View
extension RatingControlFormView: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct RatingControlFormViewConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct RatingControlFormViewFioriStyle : RatingControlFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct ReenterSignatureAction
extension ReenterSignatureAction: View
extension ReenterSignatureAction: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct ReenterSignatureActionConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct ResetAction
extension ResetAction: View
extension ResetAction: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct ResetActionConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct ReviewCountLabel
extension ReviewCountLabel: View
extension ReviewCountLabel: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct ReviewCountLabelConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct Row1Configuration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct Row2Configuration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct Row3Configuration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct SaveActionConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct SecondaryAction
extension SecondaryAction: View
extension SecondaryAction: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct SecondaryActionConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct SecondaryTimestamp
extension SecondaryTimestamp: View
extension SecondaryTimestamp: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct SecondaryTimestampConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct SectionFooter
extension SectionFooter: View
extension SectionFooter: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct SectionFooterConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct SectionFooterFioriStyle : SectionFooterStyle
-
Undocumented
See moreDeclaration
Swift
public struct SectionHeader
extension SectionHeader: View
extension SectionHeader: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct SectionHeaderConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct SectionHeaderFioriStyle : SectionHeaderStyle
-
SegmentedControlPicker
provides a segmented stylePicker
with Fiori styling.Usage
See more@State var selectedIndex: Int = 0 SegmentedControlPicker(options: ["Segment 1", "Segment 2", "Segment 3"], selectedIndex: $selectedIndex)
Declaration
Swift
public struct SegmentedControlPicker
extension SegmentedControlPicker: View
extension SegmentedControlPicker: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct SegmentedControlPickerConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct SegmentedControlPickerFioriStyle : SegmentedControlPickerStyle
-
Undocumented
See moreDeclaration
Swift
public struct SelectAllAction
extension SelectAllAction: View
extension SelectAllAction: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct SelectAllActionConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct SelectedEntriesSectionTitle
extension SelectedEntriesSectionTitle: View
extension SelectedEntriesSectionTitle: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct SelectedEntriesSectionTitleConfiguration
-
SideBar: SwiftUI View
The
SideBar
SwiftUI view presents a expandable list of items using theSideBarListItem
SwiftUI view. It has support for both edit and view modes. In edit mode, the listed data can be rearranged, and each item can be toggled as hidden. The hidden items are not shown in view mode.This View should be used in
NavigationSplitView
as side bar. How, in case you are NOT using theNavigationSplitView
for the SideBar, you should observe the change of selected item by property ‘selection’ of SideBar and handle follow-up logic by yourself. Also, you should set ‘isUsedInSplitView’ of SideBar to true and return EmptyView in ‘destination’ callback.Usage
### Initialization:
Construct the data,, array of
SideBarItemModel
, for the expandable list that will be displayed in side bar.@State private var data: [SideBarItemModel] = [ SideBarItemModel(title: "Root Item 0.1", icon: Image(systemName: "square.dashed"), filledIcon: Image(systemName: "square.dashed.inset.filled"), subtitle: "9,999+", accessoryIcon: Image(systemName: "clock"), children: nil), SideBarItemModel(title: "Root Item 0.4", icon: Image(systemName: "cloud.snow"), children: nil), SideBarItemModel(title: "Group 1", children: [ SideBarItemModel(title: "Child Item 1.1", icon: Image(systemName: "square.and.pencil"), subtitle: "66", accessoryIcon: Image(systemName: "circle"), children: nil), SideBarItemModel(title: "Child Item 1.2", icon: Image(systemName: "square.and.pencil"), accessoryIcon: Image(systemName: "circle"), children: nil) ]), SideBarItemModel(title: "Group 2", children: [ SideBarItemModel(title: "Child Item 2.1", icon: Image(systemName: "folder"), subtitle: "5", accessoryIcon: Image(systemName: "mail"), children: nil) ]) ]
Initialize a
SideBar
with title, edit button, selected item destination view, the binding edit mode indicator, search query string, data, selected item and row item content@State private var isEditing = false @State private var queryString: String? @State private var selection: SideBarItemModel? SideBar( isEditing: $isEditing, queryString: $queryString, data: $data, selection: $selection, title: "SideBar", editButton: { // Or use SWiftUI EditButton() here directly if you don't need to check the changed data or customize the label for edit button: EditButton() Button(action: { if !self.isEditing { // Check the listItems for(_, item) in listItems.enumerated() { } } }, label: {Text(isEditing ? "Done" : "Edit")}) }, destination: { item in DevDetailView(item) }, item: { item in SideBarListItem(icon: item.wrappedValue.icon, filledIcon: item.wrappedValue.filledIcon, title: AttributedString(item.wrappedValue.title), subtitle: AttributedString(item.wrappedValue.subtitle ?? ""), accessoryIcon: item.wrappedValue.accessoryIcon, isOn: Binding<Bool>(get: { !item.wrappedValue.isInvisible }, set: { newValue in item.wrappedValue.isInvisible = !newValue}), selection: $selection, data: item.wrappedValue) } )
### Handle Search:
The binding property
queryString
was used to trigger the searching on SideBar. The.searchable
modifier onNavigationSplieView
can be used to bind the @State variablequeryString
which will bind to SideBar. As the same time, anUISearchBar
can initialized inonAppear
modifier and dismissed inonDisappear
modifier
See moreNavigationSplitView { sideBar } .searchable(text: Binding<String>(get: { self.queryString ?? "" }, set: { newValue in self.queryString = newValue}), prompt: "Search") .onAppear { let searchImage = UIImage(systemName: "magnifyingglass")? .withTintColor(UIColor(Color.preferredColor(.tertiaryLabel)), renderingMode: .alwaysOriginal) .applyingSymbolConfiguration(UIImage.SymbolConfiguration(weight: .semibold)) UISearchBar.appearance().setImage(searchImage, for: .search, state: .normal) } .onDisappear { UISearchBar.appearance().setImage(nil, for: .search, state: .normal) }
Declaration
-
Undocumented
See moreDeclaration
Swift
public struct SideBarConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct SideBarFioriStyle : SideBarStyle
-
SideBarListItem: SwiftUI View
A SwiftUI View that displays a row with title, icon, subtitle and accessory icon in
See moreSideBar
SwiftUI ViewDeclaration
Swift
public struct SideBarListItem
extension SideBarListItem: View
extension SideBarListItem: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct SideBarListItemConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct SideBarListItemFioriStyle : SideBarListItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct SignatureCaptureViewConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct SignatureCaptureViewFioriStyle : SignatureCaptureViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct SingleStepConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct SingleStepFioriStyle : SingleStepStyle
-
SortFilterView
is a view that will be presented when tap the full configuration button in the filter feed back bar. ## Usage:
See more@Binding var items: [[SortFilterItem]] SortFilterView( title: { Text("Full Configuration") }, items: self.$items, onUpdate: {}, onCancel: {}, onReset: {} )
Declaration
Swift
public struct SortFilterView
extension SortFilterView: View
extension SortFilterView: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct SortFilterViewConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct SortFilterViewFioriStyle : SortFilterViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct StartSignatureAction
extension StartSignatureAction: View
extension StartSignatureAction: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct StartSignatureActionConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct StatusConfiguration
-
StepProgressIndicator
is a view supporting a list ofStepItem
in a horizontal stack. Also customized steps are also supported.Usage
@State var selection: String = "id" var steps: [StepItem] = [] StepProgressIndicator(selection: self.$selection, stepItems: self.steps) Also indexed view builder is also supported. StepProgressIndicator(title: <#T##() -> any View#>, action: <#T##() -> any View#>, cancelAction: <#T##() -> any View#>, selection: <#T##Binding<String>#>, steps: <#T##() -> any IndexedViewContainer#>)
You can also update step style for different states, if you created
See moreStepProgressIndicator
by[StepItem]
.func stepStyle(_ style: @escaping ((_ id: String) -> (some StepStyle)?)) -> some View
Declaration
Swift
public struct StepProgressIndicator
extension StepProgressIndicator: View
extension StepProgressIndicator: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct StepProgressIndicatorConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct StepProgressIndicatorFioriStyle : StepProgressIndicatorStyle
-
Undocumented
See moreDeclaration
Swift
public struct StepperField
extension StepperField: View
extension StepperField: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct StepperFieldConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct StepperFieldFioriStyle : StepperFieldStyle
-
Undocumented
See moreDeclaration
Swift
public struct StepperView
extension StepperView: View
extension StepperView: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct StepperViewConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct StepperViewFioriStyle : StepperViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct SubAttribute
extension SubAttribute: View
extension SubAttribute: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct SubAttributeConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct SubstatusConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct SubtitleConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct SwitchConfiguration
-
SwitchView
provides a Fiori style title andToggle
.Usage
See more@State var isOn: Bool = true SwitchView(title: "Switch", isOn: self.$isOn)
Declaration
-
Undocumented
See moreDeclaration
Swift
public struct SwitchViewConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct SwitchViewFioriStyle : SwitchViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct TagConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct TagsConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct TertiaryAction
extension TertiaryAction: View
extension TertiaryAction: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct TertiaryActionConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct TextFieldFormView
extension TextFieldFormView: View
extension TextFieldFormView: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct TextFieldFormViewConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct TextFieldFormViewFioriStyle : TextFieldFormViewStyle
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct TextInputConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct TextInputField
extension TextInputField: View
extension TextInputField: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct TextInputFieldConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct TextInputFieldFioriStyle : TextInputFieldStyle
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct TextViewConfiguration
-
Timeline
is a selectable view intended for timelines that require open, inProgress and complete status that displays timeline details. It uses a vertical line andtimelineNode
as a separator. To the left of the vertical line is the timeline timestamp stack view that containstimestamp
andsecondaryTimestamp
. To the right of the vertical line is the main stack view that contains title view and attribute view. Title view containstitle
, ‘subtitle’, ‘status’, ‘substatus’, below the title view is an attribute view with ‘ attribute’ and ‘subAttribute’. There is a divider line as separator under main stack.## Notes
Separator between Timeline Items in the List
All list styles in SwiftUI include separators by default. That is why there is a separator between two timeline items in the list. To get rid of the separator, set ‘listRowSeparator’ modifier to hidden.
Usage
See moreTimeline(timestamp: "06/21/24", secondaryTimestamp: .icon(Image(systemName: "sun.max")), timelineNode: .complete, title: "Complete(Disabled)", subtitle: "abc", attribute: "attr", status: .text("Info"), substatus: .icon(Image(systemName: "exclamationmark.circle")), subAttribute: "subAttr", isPast: true) Timeline(timestamp: "06/21/24", secondaryTimestamp: .text("Sunny"), timelineNode: .open, title: "Open", subtitle: "abc", attribute: "attr", status: .text("Info"), substatus: .icon(Image(systemName: "exclamationmark.circle")), subAttribute: "subAttr")
Declaration
-
Undocumented
See moreDeclaration
Swift
public struct TimelineConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct TimelineFioriStyle : TimelineStyle
-
TimelineMarker
is a non-selectable view intended for timelineMarkers that require beforeStart, start, beforeEnd and end status that displays timelineMarker details. It uses a vertical line andtimelineNode
as a separator. To the left of the vertical line is the timeline timestamp stack view that containstimestamp
andsecondaryTimestamp
. To the right of the vertical line is the main stack view that containstitle
. There is a divider line as separator under main stack.Notes
Separator between TimelineMarker Items in the List
All list styles in SwiftUI include separators by default. This is why there is a separator between two timelineMarker items in the list. To get rid of the separator, set ‘listRowSeparator’ modifier to hidden.
Usage
See moreTimelineMarker(timestamp: "06/20/24", secondaryTimestamp: .icon(Image(systemName: "sun.max")), timelineNode: .beforeStart, title: "Before Start", isPast: true, showUpperVerticalLine: false) TimelineMarker(timestamp: "06/20/24", secondaryTimestamp: .text("Sunny"), timelineNode: .beforeEnd, title: "Before End", isPresent: true)
Declaration
Swift
public struct TimelineMarker
extension TimelineMarker: View
extension TimelineMarker: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct TimelineMarkerConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct TimelineMarkerFioriStyle : TimelineMarkerStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineNode
extension TimelineNode: View
extension TimelineNode: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct TimelineNodeConfiguration
-
TimelineNowIndicator
is used to present now indicator in a Timeline view. It uses a node view and horizontal line to present now indicator.Notes
Minimum list row height between Timeline Items in the List
Since the default size of node image on the TimelineNowIndicator is 7 pixels, in order to display TimelineNowIndicator correctly in the List, set the minimum height for all row in a List using the .environment(.defaultMinListRowHeight, value) modifier on the List, the value should be less than or equal to 7.
See moreDeclaration
Swift
public struct TimelineNowIndicator
extension TimelineNowIndicator: View
extension TimelineNowIndicator: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct TimelineNowIndicatorConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct TimelineNowIndicatorFioriStyle : TimelineNowIndicatorStyle
-
TimelinePreview
is an view for showing a collection of tasks. It comes with a header and a collection view which usesTimelinePreviewItem
to represent data items within it.Usage
See moreCreate a struct that conforms to the protocol: TimelinePreviewItemModel, providing implementation for the required properties and methods: struct TimelinePreviewItemModelImplementation: TimelinePreviewItemModel { var id: UUID var title: AttributedString var icon: Image? var timelineNode: FioriSwiftUICore.TimelineNodeType var due: Date var formatter: DateFormatter? var isFuture: Bool? var isCurrent: Bool? init(id: UUID = UUID(), title: AttributedString, icon: Image? = nil, timelineNode: FioriSwiftUICore.TimelineNodeType, due: Date, dateFormat: String? = nil, isFuture: Bool? = nil, isCurrent: Bool? = nil) { self.id = id self.title = title self.icon = icon self.timelineNode = timelineNode self.due = due self.formatter = DateFormatter() if let dateFormat { self.formatter.dateFormat = dateFormat } else { self.formatter.dateFormat = "MMMM dd yyyy" } self.isFuture = isFuture self.isCurrent = isCurrent } } Create a Protocol Instance array with Initial Value @State private var items: [TimelinePreviewItemModelImplementation] = [TimelinePreviewItemModelImplementation(title: "Complete", timelineNode: TimelineNodeType.complete, due: ISO8601DateFormatter().date(from: "2023-07-21T12:00:00Z")!),TimelinePreviewItemModelImplementation(title: "End", timelineNode: TimelineNodeType.end, due: ISO8601DateFormatter().date(from: "2023-08-10T12:00:00Z")!)] Create TimelinePreview with the array TimelinePreview(optionalTitle: { Text("Timeline") }, data: .constant(items.map { $0 as any TimelinePreviewItemModel }))
Declaration
Swift
public struct TimelinePreview
extension TimelinePreview: View
extension TimelinePreview: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct TimelinePreviewConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct TimelinePreviewFioriStyle : TimelinePreviewStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelinePreviewItemConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct TimelinePreviewItemFioriStyle : TimelinePreviewItemStyle
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct TimestampConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct TitleConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct TitleFormView
extension TitleFormView: View
extension TitleFormView: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct TitleFormViewConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct TitleFormViewFioriStyle : TitleFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct ToastMessage
extension ToastMessage: View
extension ToastMessage: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct ToastMessageConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct ToastMessageFioriStyle : ToastMessageStyle
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct TopDividerConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct TrailingAccessory
extension TrailingAccessory: View
extension TrailingAccessory: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct TrailingAccessoryConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct TrendConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct TrendImageConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct UpperThumbConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct UserConsentForm
extension UserConsentForm: View
extension UserConsentForm: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct UserConsentFormConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct UserConsentFormFioriStyle : UserConsentFormStyle
-
Undocumented
See moreDeclaration
Swift
public struct UserConsentPage
extension UserConsentPage: View
extension UserConsentPage: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct UserConsentPageConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct UserConsentPageFioriStyle : UserConsentPageStyle
-
UserConsentView
is used to display a series of user consent screens modally during the process of onboarding.Usage
See moreUserConsentView { UserConsentForm(userConsentPages: { UserConsentPage { Text("Form 0 Page 0") } bodyText: { Text("detailText") } action: { Button { } label: { Text("Learn more about privacy") } } UserConsentPage { Text("Form 0 Page 1") } bodyText: { Text("detailText") } action: { Button { } label: { Text("Learn more about privacy") } } }, didAllow: { print("UserConsentForm - didAllow") } ) UserConsentForm(userConsentPages: { UserConsentPage { Text("Form 1 Page 0") } bodyText: { Text("detailText") } action: { Button { } label: { Text("Learn more about Data Privacy") } } }, isRequired: false, didAllow: { print("UserConsentForm - didAllow") }) } didAllow: { print("UserConsentView - didAllow: index: \($0)") } didDeny: { print("UserConsentView - didDeny: index: \($0), isRequired: \($1)") } didCancel: { _ in print("UserConsentView - didCancel") } didFinish: { _ in presentationMode.wrappedValue.dismiss() }
Declaration
Swift
public struct UserConsentView
extension UserConsentView: View
extension UserConsentView: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct UserConsentViewConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct UserConsentViewFioriStyle : UserConsentViewStyle
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct ValueConfiguration
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct ValueLabelConfiguration
-
ValuePicker
provides a title and value label with Fiori styling and a wheel-stylePicker
.Usage
See morelet valueOptions :[AttributedString] = ["1", "20", "300"] @State var selectedIndex: Int = 0 @State var isRequired = false @State var stateIndex: Int = 0 @State var isTrackingLiveChanges = true @State var showsErrorMessage = false
Declaration
Swift
public struct ValuePicker
extension ValuePicker: View
extension ValuePicker: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct ValuePickerConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct ValuePickerFioriStyle : ValuePickerStyle
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct WatermarkConfiguration
-
WelcomeScreen
is used to display a welcome/launch screen to the application for onboarding. The screen mainly displays the application name, instructions on how to start the activation process and an option to trigger the demo mode of the application.Usage
See moreWelcomeScreen(title: { Text(titleStr) }, description: { Text(descriptionStr) }, icon: { Image("oski") }, footnote: { Text("Want to explore?") }, action: { FioriButton { _ in // } label: { _ in Text(primaryButtonTitleStr) .multilineTextAlignment(.center) } }, secondaryAction: { // }, illustratedMessage: { // }, headlineImage: { Image("SAPLogo") }, inputText: self.$email, legalText: { Text("legal text") }, isLegalAgreementRequired: isLegalAgreementRequired, showsIllustratedMessage: self.showsIllustratedMessage, state: state, options: options, isDemoAvailable: isDemoAvailable, footerText: { if showTermsOfService, type != .link, type != .customLogo { Text("footer text") } })
Declaration
Swift
public struct WelcomeScreen
extension WelcomeScreen: View
extension WelcomeScreen: _ViewEmptyChecking
-
Undocumented
See moreDeclaration
Swift
public struct WelcomeScreenConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct WelcomeScreenFioriStyle : WelcomeScreenStyle
-
Undocumented
See moreDeclaration
-
Undocumented
See moreDeclaration
Swift
public struct XmarkConfiguration
-
Undocumented
See moreDeclaration
Swift
public struct AINoticeIconStyle : AINoticeStyle
-
Undocumented
See moreDeclaration
Swift
public struct ActivityItemIconStyle : ActivityItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct ActivityItemSubtitleStyle : ActivityItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentAttachmentTitleStyle : AttachmentStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentAttachmentSubtitleStyle : AttachmentStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentAttachmentFootnoteStyle : AttachmentStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentGroupTitleStyle : AttachmentGroupStyle
-
Undocumented
See moreDeclaration
Swift
public struct AvatarStackAvatarsStyle : AvatarStackStyle
-
Undocumented
See moreDeclaration
Swift
public struct AvatarStackAvatarsTitleStyle : AvatarStackStyle
-
Undocumented
See moreDeclaration
Swift
public struct BannerMessageIconStyle : BannerMessageStyle
-
Undocumented
See moreDeclaration
Swift
public struct BannerMessageTitleStyle : BannerMessageStyle
-
Undocumented
See moreDeclaration
Swift
public struct BannerMessageCloseActionStyle : BannerMessageStyle
-
Undocumented
See moreDeclaration
Swift
public struct BannerMessageTopDividerStyle : BannerMessageStyle
-
Undocumented
See moreDeclaration
Swift
public struct BannerMultiMessageSheetTitleStyle : BannerMultiMessageSheetStyle
-
Undocumented
See moreDeclaration
Swift
public struct BannerMultiMessageSheetCloseActionStyle : BannerMultiMessageSheetStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardExtHeaderRow1Style : CardExtHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardExtHeaderRow2Style : CardExtHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardExtHeaderRow3Style : CardExtHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardExtHeaderKpiStyle : CardExtHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardExtHeaderKpiCaptionStyle : CardExtHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardFooterActionStyle : CardFooterStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardFooterSecondaryActionStyle : CardFooterStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardFooterTertiaryActionStyle : CardFooterStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardFooterOverflowActionStyle : CardFooterStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardHeaderMediaImageStyle : CardHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardHeaderDescriptionStyle : CardHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardHeaderTitleStyle : CardHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardHeaderSubtitleStyle : CardHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardHeaderIconsStyle : CardHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardHeaderDetailImageStyle : CardHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardHeaderHeaderActionStyle : CardHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardHeaderCounterStyle : CardHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardHeaderRow1Style : CardHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardHeaderRow2Style : CardHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardHeaderRow3Style : CardHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardHeaderKpiStyle : CardHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardHeaderKpiCaptionStyle : CardHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardHeaderCardMediaStyle : CardHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardHeaderCardMainHeaderStyle : CardHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardHeaderCardExtHeaderStyle : CardHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardMainHeaderTitleStyle : CardMainHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardMainHeaderSubtitleStyle : CardMainHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardMainHeaderIconsStyle : CardMainHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardMainHeaderDetailImageStyle : CardMainHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardMainHeaderHeaderActionStyle : CardMainHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardMainHeaderCounterStyle : CardMainHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardMediaMediaImageStyle : CardMediaStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardMediaDescriptionStyle : CardMediaStyle
-
Undocumented
See moreDeclaration
Swift
public struct ContactItemTitleStyle : ContactItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct ContactItemSubtitleStyle : ContactItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct ContactItemDescriptionStyle : ContactItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct ContactItemDetailImageStyle : ContactItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct ContactItemActivityItemsStyle : ContactItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct DateTimePickerTitleStyle : DateTimePickerStyle
-
Undocumented
See moreDeclaration
Swift
public struct DateTimePickerValueLabelStyle : DateTimePickerStyle
-
Undocumented
See moreDeclaration
Swift
public struct DateTimePickerFormViewStyle : DateTimePickerStyle
-
Undocumented
See moreDeclaration
Swift
public struct DimensionSegmentTitleStyle : DimensionSegmentStyle
-
Undocumented
See moreDeclaration
Swift
public struct EULAViewTitleStyle : EULAViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct EULAViewBodyTextStyle : EULAViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct EULAViewAgreeActionStyle : EULAViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct EULAViewDisagreeActionStyle : EULAViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct EULAViewCancelActionStyle : EULAViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct FilterFeedbackBarButtonIconStyle : FilterFeedbackBarButtonStyle
-
Undocumented
See moreDeclaration
Swift
public struct FilterFeedbackBarButtonTitleStyle : FilterFeedbackBarButtonStyle
-
Undocumented
See moreDeclaration
Swift
public struct FilterFeedbackBarItemIconStyle : FilterFeedbackBarItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct FilterFeedbackBarItemTitleStyle : FilterFeedbackBarItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct FilterFeedbackBarItemAccessoryIconStyle : FilterFeedbackBarItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct FilterFormViewTitleStyle : FilterFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct FilterFormViewOptionsStyle : FilterFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct FilterFormViewFormViewStyle : FilterFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct FioriSliderTitleStyle : FioriSliderStyle
-
Undocumented
See moreDeclaration
Swift
public struct FioriSliderValueLabelStyle : FioriSliderStyle
-
Undocumented
See moreDeclaration
Swift
public struct FioriSliderLowerThumbStyle : FioriSliderStyle
-
Undocumented
See moreDeclaration
Swift
public struct FioriSliderUpperThumbStyle : FioriSliderStyle
-
Undocumented
See moreDeclaration
Swift
public struct FioriSliderActiveTrackStyle : FioriSliderStyle
-
Undocumented
See moreDeclaration
Swift
public struct FioriSliderInactiveTrackStyle : FioriSliderStyle
-
Undocumented
See moreDeclaration
Swift
public struct FioriSliderIconStyle : FioriSliderStyle
-
Undocumented
See moreDeclaration
Swift
public struct FioriSliderDescriptionStyle : FioriSliderStyle
-
Undocumented
See moreDeclaration
Swift
public struct FioriSliderLeadingAccessoryStyle : FioriSliderStyle
-
Undocumented
See moreDeclaration
Swift
public struct FioriSliderTrailingAccessoryStyle : FioriSliderStyle
-
Undocumented
See moreDeclaration
Swift
public struct FioriSliderRangeSliderControlStyle : FioriSliderStyle
-
Undocumented
See moreDeclaration
Swift
public struct FioriSliderInformationViewStyle : FioriSliderStyle
-
Undocumented
See moreDeclaration
Swift
public struct HeaderChartTitleStyle : HeaderChartStyle
-
Undocumented
See moreDeclaration
Swift
public struct HeaderChartSubtitleStyle : HeaderChartStyle
-
Undocumented
See moreDeclaration
Swift
public struct HeaderChartTrendStyle : HeaderChartStyle
-
Undocumented
See moreDeclaration
Swift
public struct HeaderChartTrendImageStyle : HeaderChartStyle
-
Undocumented
See moreDeclaration
Swift
public struct HeaderChartKpiStyle : HeaderChartStyle
-
Undocumented
See moreDeclaration
Swift
public struct IllustratedMessageDetailImageStyle : IllustratedMessageStyle
-
Undocumented
See moreDeclaration
Swift
public struct IllustratedMessageTitleStyle : IllustratedMessageStyle
-
Undocumented
See moreDeclaration
Swift
public struct IllustratedMessageDescriptionStyle : IllustratedMessageStyle
-
Undocumented
See moreDeclaration
Swift
public struct IllustratedMessageActionStyle : IllustratedMessageStyle
-
Undocumented
See moreDeclaration
Swift
public struct IllustratedMessageSecondaryActionStyle : IllustratedMessageStyle
-
Undocumented
See moreDeclaration
Swift
public struct InformationViewIconStyle : InformationViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct InformationViewDescriptionStyle : InformationViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct JouleWelcomeScreenMediaImageStyle : JouleWelcomeScreenStyle
-
Undocumented
See moreDeclaration
Swift
public struct JouleWelcomeScreenGreetingTextStyle : JouleWelcomeScreenStyle
-
Undocumented
See moreDeclaration
Swift
public struct JouleWelcomeScreenTitleStyle : JouleWelcomeScreenStyle
-
Undocumented
See moreDeclaration
Swift
public struct JouleWelcomeScreenFootnoteStyle : JouleWelcomeScreenStyle
-
Undocumented
See moreDeclaration
Swift
public struct JouleWelcomeScreenMessageContentStyle : JouleWelcomeScreenStyle
-
Undocumented
See moreDeclaration
Swift
public struct KPIItemKpiCaptionStyle : KPIItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct KPIProgressItemKPIContentStyle : KPIProgressItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct KPIProgressItemKpiCaptionStyle : KPIProgressItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct KPIProgressItemFootnoteStyle : KPIProgressItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct KPIProgressItemInnerCircleStyle : KPIProgressItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct KPIProgressItemOuterCircleStyle : KPIProgressItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct KeyValueFormViewTitleStyle : KeyValueFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct KeyValueFormViewTextViewStyle : KeyValueFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct KeyValueFormViewPlaceholderStyle : KeyValueFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct KeyValueFormViewNoteFormViewStyle : KeyValueFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct KeyValueItemKeyStyle : KeyValueItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct KeyValueItemValueStyle : KeyValueItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct KeyValueItemFormViewStyle : KeyValueItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct LabelItemIconStyle : LabelItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct LabelItemTitleStyle : LabelItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct LinearProgressIndicatorViewLinearProgressIndicatorStyle : LinearProgressIndicatorViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct LinearProgressIndicatorViewIconStyle : LinearProgressIndicatorViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct LinearProgressIndicatorViewDescriptionStyle : LinearProgressIndicatorViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct ListPickerDestinationCancelActionStyle : ListPickerDestinationStyle
-
Undocumented
See moreDeclaration
Swift
public struct ListPickerDestinationApplyActionStyle : ListPickerDestinationStyle
-
Undocumented
See moreDeclaration
Swift
public struct ListPickerDestinationSelectedEntriesSectionTitleStyle : ListPickerDestinationStyle
-
Undocumented
See moreDeclaration
Swift
public struct ListPickerDestinationSelectAllActionStyle : ListPickerDestinationStyle
-
Undocumented
See moreDeclaration
Swift
public struct ListPickerDestinationDeselectAllActionStyle : ListPickerDestinationStyle
-
Undocumented
See moreDeclaration
Swift
public struct ListPickerDestinationAllEntriesSectionTitleStyle : ListPickerDestinationStyle
-
Undocumented
See moreDeclaration
Swift
public struct ListPickerDestinationListPickerContentStyle : ListPickerDestinationStyle
-
Undocumented
See moreDeclaration
Swift
public struct ListPickerDestinationPromptStyle : ListPickerDestinationStyle
-
Undocumented
See moreDeclaration
Swift
public struct ListPickerItemTitleStyle : ListPickerItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct ListPickerItemValueStyle : ListPickerItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct ListPickerItemFormViewStyle : ListPickerItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct LoadingIndicatorTitleStyle : LoadingIndicatorStyle
-
Undocumented
See moreDeclaration
Swift
public struct LoadingIndicatorProgressStyle : LoadingIndicatorStyle
-
Undocumented
See moreDeclaration
Swift
public struct MenuSelectionActionStyle : MenuSelectionStyle
-
Undocumented
See moreDeclaration
Swift
public struct MenuSelectionItemIconStyle : MenuSelectionItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct MenuSelectionItemTitleStyle : MenuSelectionItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct NoteFormViewTextViewStyle : NoteFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct NoteFormViewPlaceholderStyle : NoteFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct NoteFormViewPlaceholderTextEditorStyle : NoteFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct NoteFormViewFormViewStyle : NoteFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectHeaderTitleStyle : ObjectHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectHeaderSubtitleStyle : ObjectHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectHeaderTagsStyle : ObjectHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectHeaderBodyTextStyle : ObjectHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectHeaderFootnoteStyle : ObjectHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectHeaderDescriptionTextStyle : ObjectHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectHeaderStatusStyle : ObjectHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectHeaderSubstatusStyle : ObjectHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectHeaderDetailImageStyle : ObjectHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectHeaderDetailContentStyle : ObjectHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectItemTitleStyle : ObjectItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectItemSubtitleStyle : ObjectItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectItemFootnoteStyle : ObjectItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectItemDescriptionStyle : ObjectItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectItemStatusStyle : ObjectItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectItemSubstatusStyle : ObjectItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectItemDetailImageStyle : ObjectItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectItemIconsStyle : ObjectItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectItemAvatarsStyle : ObjectItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectItemFootnoteIconsStyle : ObjectItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectItemFootnoteIconsTextStyle : ObjectItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectItemTagsStyle : ObjectItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectItemActionStyle : ObjectItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct PlaceholderTextEditorTextViewStyle : PlaceholderTextEditorStyle
-
Undocumented
See moreDeclaration
Swift
public struct PlaceholderTextEditorPlaceholderStyle : PlaceholderTextEditorStyle
-
Undocumented
See moreDeclaration
Swift
public struct PlaceholderTextFieldPlaceholderStyle : PlaceholderTextFieldStyle
-
Undocumented
See moreDeclaration
Swift
public struct PlaceholderTextFieldTextInputFieldStyle : PlaceholderTextFieldStyle
-
Undocumented
See moreDeclaration
Swift
public struct ProcessingIndicatorOptionalTitleStyle : ProcessingIndicatorStyle
-
Undocumented
See moreDeclaration
Swift
public struct ProfileHeaderDetailImageStyle : ProfileHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct ProfileHeaderTitleStyle : ProfileHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct ProfileHeaderSubtitleStyle : ProfileHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct ProfileHeaderDescriptionStyle : ProfileHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct ProgressIndicatorProgressIndicatorProtocolStyle : ProgressIndicatorStyle
-
Undocumented
See moreDeclaration
Swift
public struct RangeSliderControlLowerThumbStyle : RangeSliderControlStyle
-
Undocumented
See moreDeclaration
Swift
public struct RangeSliderControlUpperThumbStyle : RangeSliderControlStyle
-
Undocumented
See moreDeclaration
Swift
public struct RangeSliderControlActiveTrackStyle : RangeSliderControlStyle
-
Undocumented
See moreDeclaration
Swift
public struct RangeSliderControlInactiveTrackStyle : RangeSliderControlStyle
-
Undocumented
See moreDeclaration
Swift
public struct RatingControlValueLabelStyle : RatingControlStyle
-
Undocumented
See moreDeclaration
Swift
public struct RatingControlOnStarImageStyle : RatingControlStyle
-
Undocumented
See moreDeclaration
Swift
public struct RatingControlOffStarImageStyle : RatingControlStyle
-
Undocumented
See moreDeclaration
Swift
public struct RatingControlHalfStarImageStyle : RatingControlStyle
-
Undocumented
See moreDeclaration
Swift
public struct RatingControlReviewCountLabelStyle : RatingControlStyle
-
Undocumented
See moreDeclaration
Swift
public struct RatingControlFormViewTitleStyle : RatingControlFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct RatingControlFormViewValueLabelStyle : RatingControlFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct RatingControlFormViewOnStarImageStyle : RatingControlFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct RatingControlFormViewOffStarImageStyle : RatingControlFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct RatingControlFormViewHalfStarImageStyle : RatingControlFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct RatingControlFormViewReviewCountLabelStyle : RatingControlFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct RatingControlFormViewSubtitleStyle : RatingControlFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct RatingControlFormViewRatingControlStyle : RatingControlFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct SectionFooterTitleStyle : SectionFooterStyle
-
Undocumented
See moreDeclaration
Swift
public struct SectionFooterAttributeStyle : SectionFooterStyle
-
Undocumented
See moreDeclaration
Swift
public struct SectionHeaderTitleStyle : SectionHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct SectionHeaderAttributeStyle : SectionHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct SegmentedControlPickerOptionsStyle : SegmentedControlPickerStyle
-
Undocumented
See moreDeclaration
Swift
public struct SideBarListItemIconStyle : SideBarListItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct SideBarListItemFilledIconStyle : SideBarListItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct SideBarListItemTitleStyle : SideBarListItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct SideBarListItemSubtitleStyle : SideBarListItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct SideBarListItemAccessoryIconStyle : SideBarListItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct SideBarListItemSwitchStyle : SideBarListItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct SignatureCaptureViewTitleStyle : SignatureCaptureViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct SignatureCaptureViewStartSignatureActionStyle : SignatureCaptureViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct SignatureCaptureViewReenterSignatureActionStyle : SignatureCaptureViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct SignatureCaptureViewCancelActionStyle : SignatureCaptureViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct SignatureCaptureViewClearActionStyle : SignatureCaptureViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct SignatureCaptureViewSaveActionStyle : SignatureCaptureViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct SignatureCaptureViewXmarkStyle : SignatureCaptureViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct SignatureCaptureViewWatermarkStyle : SignatureCaptureViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct SingleStepTitleStyle : SingleStepStyle
-
Undocumented
See moreDeclaration
Swift
public struct SingleStepNodeStyle : SingleStepStyle
-
Undocumented
See moreDeclaration
Swift
public struct SingleStepLineStyle : SingleStepStyle
-
Undocumented
See moreDeclaration
Swift
public struct SortFilterViewTitleStyle : SortFilterViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct SortFilterViewCancelActionStyle : SortFilterViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct SortFilterViewApplyActionStyle : SortFilterViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct SortFilterViewResetActionStyle : SortFilterViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct StepProgressIndicatorTitleStyle : StepProgressIndicatorStyle
-
Undocumented
See moreDeclaration
Swift
public struct StepProgressIndicatorActionStyle : StepProgressIndicatorStyle
-
Undocumented
See moreDeclaration
Swift
public struct StepProgressIndicatorCancelActionStyle : StepProgressIndicatorStyle
-
Undocumented
See moreDeclaration
Swift
public struct StepperFieldDecrementActionStyle : StepperFieldStyle
-
Undocumented
See moreDeclaration
Swift
public struct StepperFieldIncrementActionStyle : StepperFieldStyle
-
Undocumented
See moreDeclaration
Swift
public struct StepperFieldTextInputFieldStyle : StepperFieldStyle
-
Undocumented
See moreDeclaration
Swift
public struct StepperViewTitleStyle : StepperViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct StepperViewDecrementActionStyle : StepperViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct StepperViewIncrementActionStyle : StepperViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct StepperViewIconStyle : StepperViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct StepperViewDescriptionStyle : StepperViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct StepperViewStepperFieldStyle : StepperViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct StepperViewInformationViewStyle : StepperViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct SwitchViewTitleStyle : SwitchViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct SwitchViewSwitchStyle : SwitchViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct TextFieldFormViewTitleStyle : TextFieldFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct TextFieldFormViewPlaceholderStyle : TextFieldFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct TextFieldFormViewTitleFormViewStyle : TextFieldFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineTimestampStyle : TimelineStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineSecondaryTimestampStyle : TimelineStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineTimelineNodeStyle : TimelineStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineIconStyle : TimelineStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineTitleStyle : TimelineStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineSubtitleStyle : TimelineStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineAttributeStyle : TimelineStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineStatusStyle : TimelineStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineSubstatusStyle : TimelineStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineSubAttributeStyle : TimelineStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineMarkerTimestampStyle : TimelineMarkerStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineMarkerSecondaryTimestampStyle : TimelineMarkerStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineMarkerTimelineNodeStyle : TimelineMarkerStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineMarkerIconStyle : TimelineMarkerStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineMarkerTitleStyle : TimelineMarkerStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineNowIndicatorNowIndicatorNodeStyle : TimelineNowIndicatorStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelinePreviewOptionalTitleStyle : TimelinePreviewStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelinePreviewActionStyle : TimelinePreviewStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelinePreviewItemTitleStyle : TimelinePreviewItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelinePreviewItemIconStyle : TimelinePreviewItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelinePreviewItemTimelineNodeStyle : TimelinePreviewItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelinePreviewItemTimestampStyle : TimelinePreviewItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct TitleFormViewPlaceholderStyle : TitleFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct TitleFormViewPlaceholderTextFieldStyle : TitleFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct TitleFormViewFormViewStyle : TitleFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct ToastMessageIconStyle : ToastMessageStyle
-
Undocumented
See moreDeclaration
Swift
public struct ToastMessageTitleStyle : ToastMessageStyle
-
Undocumented
See moreDeclaration
Swift
public struct UserConsentFormNextActionStyle : UserConsentFormStyle
-
Undocumented
See moreDeclaration
Swift
public struct UserConsentFormCancelActionStyle : UserConsentFormStyle
-
Undocumented
See moreDeclaration
Swift
public struct UserConsentFormAllowActionStyle : UserConsentFormStyle
-
Undocumented
See moreDeclaration
Swift
public struct UserConsentFormDenyActionStyle : UserConsentFormStyle
-
Undocumented
See moreDeclaration
Swift
public struct UserConsentFormNotNowActionStyle : UserConsentFormStyle
-
Undocumented
See moreDeclaration
Swift
public struct UserConsentPageTitleStyle : UserConsentPageStyle
-
Undocumented
See moreDeclaration
Swift
public struct UserConsentPageBodyTextStyle : UserConsentPageStyle
-
Undocumented
See moreDeclaration
Swift
public struct UserConsentPageActionStyle : UserConsentPageStyle
-
Undocumented
See moreDeclaration
Swift
public struct ValuePickerTitleStyle : ValuePickerStyle
-
Undocumented
See moreDeclaration
Swift
public struct ValuePickerValueLabelStyle : ValuePickerStyle
-
Undocumented
See moreDeclaration
Swift
public struct ValuePickerOptionsStyle : ValuePickerStyle
-
Undocumented
See moreDeclaration
Swift
public struct WelcomeScreenTitleStyle : WelcomeScreenStyle
-
Undocumented
See moreDeclaration
Swift
public struct WelcomeScreenDescriptionStyle : WelcomeScreenStyle
-
Undocumented
See moreDeclaration
Swift
public struct WelcomeScreenIconStyle : WelcomeScreenStyle
-
Undocumented
See moreDeclaration
Swift
public struct WelcomeScreenFootnoteStyle : WelcomeScreenStyle
-
Undocumented
See moreDeclaration
Swift
public struct WelcomeScreenActionStyle : WelcomeScreenStyle
-
Undocumented
See moreDeclaration
Swift
public struct WelcomeScreenSecondaryActionStyle : WelcomeScreenStyle
-
Undocumented
See moreDeclaration
Swift
public struct ModifiedStyle<Style, Modifier> : DynamicProperty where Modifier : ViewModifier
extension ModifiedStyle: AINoticeStyle where Style: AINoticeStyle
extension ModifiedStyle: AccessoryIconStyle where Style: AccessoryIconStyle
extension ModifiedStyle: ActionStyle where Style: ActionStyle
extension ModifiedStyle: ActiveTrackStyle where Style: ActiveTrackStyle
extension ModifiedStyle: ActivityItemStyle where Style: ActivityItemStyle
extension ModifiedStyle: ActivityItemsStyle where Style: ActivityItemsStyle
extension ModifiedStyle: AgreeActionStyle where Style: AgreeActionStyle
extension ModifiedStyle: AllEntriesSectionTitleStyle where Style: AllEntriesSectionTitleStyle
extension ModifiedStyle: AllowActionStyle where Style: AllowActionStyle
extension ModifiedStyle: ApplyActionStyle where Style: ApplyActionStyle
extension ModifiedStyle: AttachmentButtonImageStyle where Style: AttachmentButtonImageStyle
extension ModifiedStyle: AttachmentStyle where Style: AttachmentStyle
extension ModifiedStyle: AttachmentFootnoteStyle where Style: AttachmentFootnoteStyle
extension ModifiedStyle: AttachmentGroupStyle where Style: AttachmentGroupStyle
extension ModifiedStyle: AttachmentSubtitleStyle where Style: AttachmentSubtitleStyle
extension ModifiedStyle: AttachmentThumbnailStyle where Style: AttachmentThumbnailStyle
extension ModifiedStyle: AttachmentTitleStyle where Style: AttachmentTitleStyle
extension ModifiedStyle: AttributeStyle where Style: AttributeStyle
extension ModifiedStyle: AvatarStackStyle where Style: AvatarStackStyle
extension ModifiedStyle: AvatarsStyle where Style: AvatarsStyle
extension ModifiedStyle: AvatarsTitleStyle where Style: AvatarsTitleStyle
extension ModifiedStyle: BannerMessageStyle where Style: BannerMessageStyle
extension ModifiedStyle: BannerMultiMessageSheetStyle where Style: BannerMultiMessageSheetStyle
extension ModifiedStyle: BodyTextStyle where Style: BodyTextStyle
extension ModifiedStyle: CancelActionStyle where Style: CancelActionStyle
extension ModifiedStyle: CardBodyStyle where Style: CardBodyStyle
extension ModifiedStyle: CardStyle where Style: CardStyle
extension ModifiedStyle: CardExtHeaderStyle where Style: CardExtHeaderStyle
extension ModifiedStyle: CardFooterStyle where Style: CardFooterStyle
extension ModifiedStyle: CardHeaderStyle where Style: CardHeaderStyle
extension ModifiedStyle: CardMainHeaderStyle where Style: CardMainHeaderStyle
extension ModifiedStyle: CardMediaStyle where Style: CardMediaStyle
extension ModifiedStyle: CheckoutIndicatorStyle where Style: CheckoutIndicatorStyle
extension ModifiedStyle: ClearActionStyle where Style: ClearActionStyle
extension ModifiedStyle: CloseActionStyle where Style: CloseActionStyle
extension ModifiedStyle: ContactItemStyle where Style: ContactItemStyle
extension ModifiedStyle: CounterStyle where Style: CounterStyle
extension ModifiedStyle: DateTimePickerStyle where Style: DateTimePickerStyle
extension ModifiedStyle: DecrementActionStyle where Style: DecrementActionStyle
extension ModifiedStyle: DenyActionStyle where Style: DenyActionStyle
extension ModifiedStyle: DescriptionStyle where Style: DescriptionStyle
extension ModifiedStyle: DescriptionTextStyle where Style: DescriptionTextStyle
extension ModifiedStyle: DeselectAllActionStyle where Style: DeselectAllActionStyle
extension ModifiedStyle: DetailContentStyle where Style: DetailContentStyle
extension ModifiedStyle: DetailImageStyle where Style: DetailImageStyle
extension ModifiedStyle: DimensionSegmentStyle where Style: DimensionSegmentStyle
extension ModifiedStyle: DimensionSelectorStyle where Style: DimensionSelectorStyle
extension ModifiedStyle: DisagreeActionStyle where Style: DisagreeActionStyle
extension ModifiedStyle: DurationPickerStyle where Style: DurationPickerStyle
extension ModifiedStyle: EULAViewStyle where Style: EULAViewStyle
extension ModifiedStyle: FilledIconStyle where Style: FilledIconStyle
extension ModifiedStyle: FilterFeedbackBarButtonStyle where Style: FilterFeedbackBarButtonStyle
extension ModifiedStyle: FilterFeedbackBarStyle where Style: FilterFeedbackBarStyle
extension ModifiedStyle: FilterFeedbackBarItemStyle where Style: FilterFeedbackBarItemStyle
extension ModifiedStyle: FilterFormViewStyle where Style: FilterFormViewStyle
extension ModifiedStyle: FioriSliderStyle where Style: FioriSliderStyle
extension ModifiedStyle: FootnoteStyle where Style: FootnoteStyle
extension ModifiedStyle: FootnoteIconsStyle where Style: FootnoteIconsStyle
extension ModifiedStyle: FootnoteIconsTextStyle where Style: FootnoteIconsTextStyle
extension ModifiedStyle: FormViewStyle where Style: FormViewStyle
extension ModifiedStyle: GreetingTextStyle where Style: GreetingTextStyle
extension ModifiedStyle: HalfStarImageStyle where Style: HalfStarImageStyle
extension ModifiedStyle: HeaderActionStyle where Style: HeaderActionStyle
extension ModifiedStyle: HeaderChartStyle where Style: HeaderChartStyle
extension ModifiedStyle: HelperTextStyle where Style: HelperTextStyle
extension ModifiedStyle: IconStyle where Style: IconStyle
extension ModifiedStyle: IconsStyle where Style: IconsStyle
extension ModifiedStyle: IllustratedMessageStyle where Style: IllustratedMessageStyle
extension ModifiedStyle: InactiveTrackStyle where Style: InactiveTrackStyle
extension ModifiedStyle: IncrementActionStyle where Style: IncrementActionStyle
extension ModifiedStyle: InformationViewStyle where Style: InformationViewStyle
extension ModifiedStyle: InnerCircleStyle where Style: InnerCircleStyle
extension ModifiedStyle: JouleWelcomeScreenStyle where Style: JouleWelcomeScreenStyle
extension ModifiedStyle: KPIContentStyle where Style: KPIContentStyle
extension ModifiedStyle: KPIItemStyle where Style: KPIItemStyle
extension ModifiedStyle: KPIProgressItemStyle where Style: KPIProgressItemStyle
extension ModifiedStyle: KPISubItemStyle where Style: KPISubItemStyle
extension ModifiedStyle: KeyStyle where Style: KeyStyle
extension ModifiedStyle: KeyValueFormViewStyle where Style: KeyValueFormViewStyle
extension ModifiedStyle: KeyValueItemStyle where Style: KeyValueItemStyle
extension ModifiedStyle: KpiCaptionStyle where Style: KpiCaptionStyle
extension ModifiedStyle: KpiStyle where Style: KpiStyle
extension ModifiedStyle: LabelItemStyle where Style: LabelItemStyle
extension ModifiedStyle: LeadingAccessoryStyle where Style: LeadingAccessoryStyle
extension ModifiedStyle: LineStyle where Style: LineStyle
extension ModifiedStyle: LinearProgressIndicatorStyle where Style: LinearProgressIndicatorStyle
extension ModifiedStyle: LinearProgressIndicatorViewStyle where Style: LinearProgressIndicatorViewStyle
extension ModifiedStyle: ListPickerContentStyle where Style: ListPickerContentStyle
extension ModifiedStyle: ListPickerDestinationStyle where Style: ListPickerDestinationStyle
extension ModifiedStyle: ListPickerItemStyle where Style: ListPickerItemStyle
extension ModifiedStyle: LoadingIndicatorStyle where Style: LoadingIndicatorStyle
extension ModifiedStyle: LowerThumbStyle where Style: LowerThumbStyle
extension ModifiedStyle: MediaImageStyle where Style: MediaImageStyle
extension ModifiedStyle: MenuSelectionStyle where Style: MenuSelectionStyle
extension ModifiedStyle: MenuSelectionItemStyle where Style: MenuSelectionItemStyle
extension ModifiedStyle: MessageContentStyle where Style: MessageContentStyle
extension ModifiedStyle: MoreActionOverflowStyle where Style: MoreActionOverflowStyle
extension ModifiedStyle: NextActionStyle where Style: NextActionStyle
extension ModifiedStyle: NodeStyle where Style: NodeStyle
extension ModifiedStyle: NotNowActionStyle where Style: NotNowActionStyle
extension ModifiedStyle: NoteFormViewStyle where Style: NoteFormViewStyle
extension ModifiedStyle: NowIndicatorNodeStyle where Style: NowIndicatorNodeStyle
extension ModifiedStyle: ObjectHeaderStyle where Style: ObjectHeaderStyle
extension ModifiedStyle: ObjectItemStyle where Style: ObjectItemStyle
extension ModifiedStyle: OffStarImageStyle where Style: OffStarImageStyle
extension ModifiedStyle: OnStarImageStyle where Style: OnStarImageStyle
extension ModifiedStyle: OptionalTitleStyle where Style: OptionalTitleStyle
extension ModifiedStyle: OptionsStyle where Style: OptionsStyle
extension ModifiedStyle: OuterCircleStyle where Style: OuterCircleStyle
extension ModifiedStyle: OverflowActionStyle where Style: OverflowActionStyle
extension ModifiedStyle: PlaceholderStyle where Style: PlaceholderStyle
extension ModifiedStyle: PlaceholderTextEditorStyle where Style: PlaceholderTextEditorStyle
extension ModifiedStyle: PlaceholderTextFieldStyle where Style: PlaceholderTextFieldStyle
extension ModifiedStyle: ProcessingIndicatorStyle where Style: ProcessingIndicatorStyle
extension ModifiedStyle: ProfileHeaderStyle where Style: ProfileHeaderStyle
extension ModifiedStyle: ProgressStyle where Style: ProgressStyle
extension ModifiedStyle: ProgressIndicatorStyle where Style: ProgressIndicatorStyle
extension ModifiedStyle: ProgressIndicatorProtocolStyle where Style: ProgressIndicatorProtocolStyle
extension ModifiedStyle: PromptStyle where Style: PromptStyle
extension ModifiedStyle: RangeSliderControlStyle where Style: RangeSliderControlStyle
extension ModifiedStyle: RatingControlStyle where Style: RatingControlStyle
extension ModifiedStyle: RatingControlFormViewStyle where Style: RatingControlFormViewStyle
extension ModifiedStyle: ReenterSignatureActionStyle where Style: ReenterSignatureActionStyle
extension ModifiedStyle: ResetActionStyle where Style: ResetActionStyle
extension ModifiedStyle: ReviewCountLabelStyle where Style: ReviewCountLabelStyle
extension ModifiedStyle: Row1Style where Style: Row1Style
extension ModifiedStyle: Row2Style where Style: Row2Style
extension ModifiedStyle: Row3Style where Style: Row3Style
extension ModifiedStyle: SaveActionStyle where Style: SaveActionStyle
extension ModifiedStyle: SecondaryActionStyle where Style: SecondaryActionStyle
extension ModifiedStyle: SecondaryTimestampStyle where Style: SecondaryTimestampStyle
extension ModifiedStyle: SectionFooterStyle where Style: SectionFooterStyle
extension ModifiedStyle: SectionHeaderStyle where Style: SectionHeaderStyle
extension ModifiedStyle: SegmentedControlPickerStyle where Style: SegmentedControlPickerStyle
extension ModifiedStyle: SelectAllActionStyle where Style: SelectAllActionStyle
extension ModifiedStyle: SelectedEntriesSectionTitleStyle where Style: SelectedEntriesSectionTitleStyle
extension ModifiedStyle: SideBarStyle where Style: SideBarStyle
extension ModifiedStyle: SideBarListItemStyle where Style: SideBarListItemStyle
extension ModifiedStyle: SignatureCaptureViewStyle where Style: SignatureCaptureViewStyle
extension ModifiedStyle: SingleStepStyle where Style: SingleStepStyle
extension ModifiedStyle: SortFilterViewStyle where Style: SortFilterViewStyle
extension ModifiedStyle: StartSignatureActionStyle where Style: StartSignatureActionStyle
extension ModifiedStyle: StatusStyle where Style: StatusStyle
extension ModifiedStyle: StepProgressIndicatorStyle where Style: StepProgressIndicatorStyle
extension ModifiedStyle: StepperFieldStyle where Style: StepperFieldStyle
extension ModifiedStyle: StepperViewStyle where Style: StepperViewStyle
extension ModifiedStyle: SubAttributeStyle where Style: SubAttributeStyle
extension ModifiedStyle: SubstatusStyle where Style: SubstatusStyle
extension ModifiedStyle: SubtitleStyle where Style: SubtitleStyle
extension ModifiedStyle: SwitchStyle where Style: SwitchStyle
extension ModifiedStyle: SwitchViewStyle where Style: SwitchViewStyle
extension ModifiedStyle: TagStyle where Style: TagStyle
extension ModifiedStyle: TagsStyle where Style: TagsStyle
extension ModifiedStyle: TertiaryActionStyle where Style: TertiaryActionStyle
extension ModifiedStyle: TextFieldFormViewStyle where Style: TextFieldFormViewStyle
extension ModifiedStyle: TextInputStyle where Style: TextInputStyle
extension ModifiedStyle: TextInputFieldStyle where Style: TextInputFieldStyle
extension ModifiedStyle: TextViewStyle where Style: TextViewStyle
extension ModifiedStyle: TimelineStyle where Style: TimelineStyle
extension ModifiedStyle: TimelineMarkerStyle where Style: TimelineMarkerStyle
extension ModifiedStyle: TimelineNodeStyle where Style: TimelineNodeStyle
extension ModifiedStyle: TimelineNowIndicatorStyle where Style: TimelineNowIndicatorStyle
extension ModifiedStyle: TimelinePreviewStyle where Style: TimelinePreviewStyle
extension ModifiedStyle: TimelinePreviewItemStyle where Style: TimelinePreviewItemStyle
extension ModifiedStyle: TimestampStyle where Style: TimestampStyle
extension ModifiedStyle: TitleStyle where Style: TitleStyle
extension ModifiedStyle: TitleFormViewStyle where Style: TitleFormViewStyle
extension ModifiedStyle: ToastMessageStyle where Style: ToastMessageStyle
extension ModifiedStyle: TopDividerStyle where Style: TopDividerStyle
extension ModifiedStyle: TrailingAccessoryStyle where Style: TrailingAccessoryStyle
extension ModifiedStyle: TrendStyle where Style: TrendStyle
extension ModifiedStyle: TrendImageStyle where Style: TrendImageStyle
extension ModifiedStyle: UpperThumbStyle where Style: UpperThumbStyle
extension ModifiedStyle: UserConsentFormStyle where Style: UserConsentFormStyle
extension ModifiedStyle: UserConsentPageStyle where Style: UserConsentPageStyle
extension ModifiedStyle: UserConsentViewStyle where Style: UserConsentViewStyle
extension ModifiedStyle: ValueStyle where Style: ValueStyle
extension ModifiedStyle: ValueLabelStyle where Style: ValueLabelStyle
extension ModifiedStyle: ValuePickerStyle where Style: ValuePickerStyle
extension ModifiedStyle: WatermarkStyle where Style: WatermarkStyle
extension ModifiedStyle: WelcomeScreenStyle where Style: WelcomeScreenStyle
extension ModifiedStyle: XmarkStyle where Style: XmarkStyle
-
Undocumented
See moreDeclaration
Swift
public struct AINoticeStyleModifier<Style> : ViewModifier where Style : AINoticeStyle
-
Undocumented
See moreDeclaration
Swift
public struct AccessoryIconStyleModifier<Style> : ViewModifier where Style : AccessoryIconStyle
-
Undocumented
See moreDeclaration
Swift
public struct ActionStyleModifier<Style> : ViewModifier where Style : ActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct ActiveTrackStyleModifier<Style> : ViewModifier where Style : ActiveTrackStyle
-
Undocumented
See moreDeclaration
Swift
public struct ActivityItemStyleModifier<Style> : ViewModifier where Style : ActivityItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct ActivityItemsStyleModifier<Style> : ViewModifier where Style : ActivityItemsStyle
-
Undocumented
See moreDeclaration
Swift
public struct AgreeActionStyleModifier<Style> : ViewModifier where Style : AgreeActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct AllEntriesSectionTitleStyleModifier<Style> : ViewModifier where Style : AllEntriesSectionTitleStyle
-
Undocumented
See moreDeclaration
Swift
public struct AllowActionStyleModifier<Style> : ViewModifier where Style : AllowActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct ApplyActionStyleModifier<Style> : ViewModifier where Style : ApplyActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentButtonImageStyleModifier<Style> : ViewModifier where Style : AttachmentButtonImageStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentStyleModifier<Style> : ViewModifier where Style : AttachmentStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentFootnoteStyleModifier<Style> : ViewModifier where Style : AttachmentFootnoteStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentGroupStyleModifier<Style> : ViewModifier where Style : AttachmentGroupStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentSubtitleStyleModifier<Style> : ViewModifier where Style : AttachmentSubtitleStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentThumbnailStyleModifier<Style> : ViewModifier where Style : AttachmentThumbnailStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttachmentTitleStyleModifier<Style> : ViewModifier where Style : AttachmentTitleStyle
-
Undocumented
See moreDeclaration
Swift
public struct AttributeStyleModifier<Style> : ViewModifier where Style : AttributeStyle
-
Undocumented
See moreDeclaration
Swift
public struct AvatarStackStyleModifier<Style> : ViewModifier where Style : AvatarStackStyle
-
Undocumented
See moreDeclaration
Swift
public struct AvatarsStyleModifier<Style> : ViewModifier where Style : AvatarsStyle
-
Undocumented
See moreDeclaration
Swift
public struct AvatarsTitleStyleModifier<Style> : ViewModifier where Style : AvatarsTitleStyle
-
Undocumented
See moreDeclaration
Swift
public struct BannerMessageStyleModifier<Style> : ViewModifier where Style : BannerMessageStyle
-
Undocumented
See moreDeclaration
Swift
public struct BannerMultiMessageSheetStyleModifier<Style> : ViewModifier where Style : BannerMultiMessageSheetStyle
-
Undocumented
See moreDeclaration
Swift
public struct BodyTextStyleModifier<Style> : ViewModifier where Style : BodyTextStyle
-
Undocumented
See moreDeclaration
Swift
public struct CancelActionStyleModifier<Style> : ViewModifier where Style : CancelActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardBodyStyleModifier<Style> : ViewModifier where Style : CardBodyStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardExtHeaderStyleModifier<Style> : ViewModifier where Style : CardExtHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardFooterStyleModifier<Style> : ViewModifier where Style : CardFooterStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardHeaderStyleModifier<Style> : ViewModifier where Style : CardHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardMainHeaderStyleModifier<Style> : ViewModifier where Style : CardMainHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct CardMediaStyleModifier<Style> : ViewModifier where Style : CardMediaStyle
-
Undocumented
See moreDeclaration
Swift
public struct CheckoutIndicatorStyleModifier<Style> : ViewModifier where Style : CheckoutIndicatorStyle
-
Undocumented
See moreDeclaration
Swift
public struct ClearActionStyleModifier<Style> : ViewModifier where Style : ClearActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct CloseActionStyleModifier<Style> : ViewModifier where Style : CloseActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct ContactItemStyleModifier<Style> : ViewModifier where Style : ContactItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct CounterStyleModifier<Style> : ViewModifier where Style : CounterStyle
-
Undocumented
See moreDeclaration
Swift
public struct DateTimePickerStyleModifier<Style> : ViewModifier where Style : DateTimePickerStyle
-
Undocumented
See moreDeclaration
Swift
public struct DecrementActionStyleModifier<Style> : ViewModifier where Style : DecrementActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct DenyActionStyleModifier<Style> : ViewModifier where Style : DenyActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct DescriptionStyleModifier<Style> : ViewModifier where Style : DescriptionStyle
-
Undocumented
See moreDeclaration
Swift
public struct DescriptionTextStyleModifier<Style> : ViewModifier where Style : DescriptionTextStyle
-
Undocumented
See moreDeclaration
Swift
public struct DeselectAllActionStyleModifier<Style> : ViewModifier where Style : DeselectAllActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct DetailContentStyleModifier<Style> : ViewModifier where Style : DetailContentStyle
-
Undocumented
See moreDeclaration
Swift
public struct DetailImageStyleModifier<Style> : ViewModifier where Style : DetailImageStyle
-
Undocumented
See moreDeclaration
Swift
public struct DimensionSegmentStyleModifier<Style> : ViewModifier where Style : DimensionSegmentStyle
-
Undocumented
See moreDeclaration
Swift
public struct DimensionSelectorStyleModifier<Style> : ViewModifier where Style : DimensionSelectorStyle
-
Undocumented
See moreDeclaration
Swift
public struct DisagreeActionStyleModifier<Style> : ViewModifier where Style : DisagreeActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct DurationPickerStyleModifier<Style> : ViewModifier where Style : DurationPickerStyle
-
Undocumented
See moreDeclaration
Swift
public struct EULAViewStyleModifier<Style> : ViewModifier where Style : EULAViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct FilledIconStyleModifier<Style> : ViewModifier where Style : FilledIconStyle
-
Undocumented
See moreDeclaration
Swift
public struct FilterFeedbackBarButtonStyleModifier<Style> : ViewModifier where Style : FilterFeedbackBarButtonStyle
-
Undocumented
See moreDeclaration
Swift
public struct FilterFeedbackBarStyleModifier<Style> : ViewModifier where Style : FilterFeedbackBarStyle
-
Undocumented
See moreDeclaration
Swift
public struct FilterFeedbackBarItemStyleModifier<Style> : ViewModifier where Style : FilterFeedbackBarItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct FilterFormViewStyleModifier<Style> : ViewModifier where Style : FilterFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct FioriSliderStyleModifier<Style> : ViewModifier where Style : FioriSliderStyle
-
Undocumented
See moreDeclaration
Swift
public struct FootnoteStyleModifier<Style> : ViewModifier where Style : FootnoteStyle
-
Undocumented
See moreDeclaration
Swift
public struct FootnoteIconsStyleModifier<Style> : ViewModifier where Style : FootnoteIconsStyle
-
Undocumented
See moreDeclaration
Swift
public struct FootnoteIconsTextStyleModifier<Style> : ViewModifier where Style : FootnoteIconsTextStyle
-
Undocumented
See moreDeclaration
Swift
public struct FormViewStyleModifier<Style> : ViewModifier where Style : FormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct GreetingTextStyleModifier<Style> : ViewModifier where Style : GreetingTextStyle
-
Undocumented
See moreDeclaration
Swift
public struct HalfStarImageStyleModifier<Style> : ViewModifier where Style : HalfStarImageStyle
-
Undocumented
See moreDeclaration
Swift
public struct HeaderActionStyleModifier<Style> : ViewModifier where Style : HeaderActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct HeaderChartStyleModifier<Style> : ViewModifier where Style : HeaderChartStyle
-
Undocumented
See moreDeclaration
Swift
public struct HelperTextStyleModifier<Style> : ViewModifier where Style : HelperTextStyle
-
Undocumented
See moreDeclaration
Swift
public struct IconsStyleModifier<Style> : ViewModifier where Style : IconsStyle
-
Undocumented
See moreDeclaration
Swift
public struct IllustratedMessageStyleModifier<Style> : ViewModifier where Style : IllustratedMessageStyle
-
Undocumented
See moreDeclaration
Swift
public struct InactiveTrackStyleModifier<Style> : ViewModifier where Style : InactiveTrackStyle
-
Undocumented
See moreDeclaration
Swift
public struct IncrementActionStyleModifier<Style> : ViewModifier where Style : IncrementActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct InformationViewStyleModifier<Style> : ViewModifier where Style : InformationViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct InnerCircleStyleModifier<Style> : ViewModifier where Style : InnerCircleStyle
-
Undocumented
See moreDeclaration
Swift
public struct JouleWelcomeScreenStyleModifier<Style> : ViewModifier where Style : JouleWelcomeScreenStyle
-
Undocumented
See moreDeclaration
Swift
public struct KPIContentStyleModifier<Style> : ViewModifier where Style : KPIContentStyle
-
Undocumented
See moreDeclaration
Swift
public struct KPIItemStyleModifier<Style> : ViewModifier where Style : KPIItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct KPIProgressItemStyleModifier<Style> : ViewModifier where Style : KPIProgressItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct KPISubItemStyleModifier<Style> : ViewModifier where Style : KPISubItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct KeyValueFormViewStyleModifier<Style> : ViewModifier where Style : KeyValueFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct KeyValueItemStyleModifier<Style> : ViewModifier where Style : KeyValueItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct KpiCaptionStyleModifier<Style> : ViewModifier where Style : KpiCaptionStyle
-
Undocumented
See moreDeclaration
Swift
public struct LabelItemStyleModifier<Style> : ViewModifier where Style : LabelItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct LeadingAccessoryStyleModifier<Style> : ViewModifier where Style : LeadingAccessoryStyle
-
Undocumented
See moreDeclaration
Swift
public struct LinearProgressIndicatorStyleModifier<Style> : ViewModifier where Style : LinearProgressIndicatorStyle
-
Undocumented
See moreDeclaration
Swift
public struct LinearProgressIndicatorViewStyleModifier<Style> : ViewModifier where Style : LinearProgressIndicatorViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct ListPickerContentStyleModifier<Style> : ViewModifier where Style : ListPickerContentStyle
-
Undocumented
See moreDeclaration
Swift
public struct ListPickerDestinationStyleModifier<Style> : ViewModifier where Style : ListPickerDestinationStyle
-
Undocumented
See moreDeclaration
Swift
public struct ListPickerItemStyleModifier<Style> : ViewModifier where Style : ListPickerItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct LoadingIndicatorStyleModifier<Style> : ViewModifier where Style : LoadingIndicatorStyle
-
Undocumented
See moreDeclaration
Swift
public struct LowerThumbStyleModifier<Style> : ViewModifier where Style : LowerThumbStyle
-
Undocumented
See moreDeclaration
Swift
public struct MediaImageStyleModifier<Style> : ViewModifier where Style : MediaImageStyle
-
Undocumented
See moreDeclaration
Swift
public struct MenuSelectionStyleModifier<Style> : ViewModifier where Style : MenuSelectionStyle
-
Undocumented
See moreDeclaration
Swift
public struct MenuSelectionItemStyleModifier<Style> : ViewModifier where Style : MenuSelectionItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct MessageContentStyleModifier<Style> : ViewModifier where Style : MessageContentStyle
-
Undocumented
See moreDeclaration
Swift
public struct MoreActionOverflowStyleModifier<Style> : ViewModifier where Style : MoreActionOverflowStyle
-
Undocumented
See moreDeclaration
Swift
public struct NextActionStyleModifier<Style> : ViewModifier where Style : NextActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct NotNowActionStyleModifier<Style> : ViewModifier where Style : NotNowActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct NoteFormViewStyleModifier<Style> : ViewModifier where Style : NoteFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct NowIndicatorNodeStyleModifier<Style> : ViewModifier where Style : NowIndicatorNodeStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectHeaderStyleModifier<Style> : ViewModifier where Style : ObjectHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct ObjectItemStyleModifier<Style> : ViewModifier where Style : ObjectItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct OffStarImageStyleModifier<Style> : ViewModifier where Style : OffStarImageStyle
-
Undocumented
See moreDeclaration
Swift
public struct OnStarImageStyleModifier<Style> : ViewModifier where Style : OnStarImageStyle
-
Undocumented
See moreDeclaration
Swift
public struct OptionalTitleStyleModifier<Style> : ViewModifier where Style : OptionalTitleStyle
-
Undocumented
See moreDeclaration
Swift
public struct OptionsStyleModifier<Style> : ViewModifier where Style : OptionsStyle
-
Undocumented
See moreDeclaration
Swift
public struct OuterCircleStyleModifier<Style> : ViewModifier where Style : OuterCircleStyle
-
Undocumented
See moreDeclaration
Swift
public struct OverflowActionStyleModifier<Style> : ViewModifier where Style : OverflowActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct PlaceholderStyleModifier<Style> : ViewModifier where Style : PlaceholderStyle
-
Undocumented
See moreDeclaration
Swift
public struct PlaceholderTextEditorStyleModifier<Style> : ViewModifier where Style : PlaceholderTextEditorStyle
-
Undocumented
See moreDeclaration
Swift
public struct PlaceholderTextFieldStyleModifier<Style> : ViewModifier where Style : PlaceholderTextFieldStyle
-
Undocumented
See moreDeclaration
Swift
public struct ProcessingIndicatorStyleModifier<Style> : ViewModifier where Style : ProcessingIndicatorStyle
-
Undocumented
See moreDeclaration
Swift
public struct ProfileHeaderStyleModifier<Style> : ViewModifier where Style : ProfileHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct ProgressStyleModifier<Style> : ViewModifier where Style : ProgressStyle
-
Undocumented
See moreDeclaration
Swift
public struct ProgressIndicatorStyleModifier<Style> : ViewModifier where Style : ProgressIndicatorStyle
-
Undocumented
See moreDeclaration
Swift
public struct ProgressIndicatorProtocolStyleModifier<Style> : ViewModifier where Style : ProgressIndicatorProtocolStyle
-
Undocumented
See moreDeclaration
Swift
public struct PromptStyleModifier<Style> : ViewModifier where Style : PromptStyle
-
Undocumented
See moreDeclaration
Swift
public struct RangeSliderControlStyleModifier<Style> : ViewModifier where Style : RangeSliderControlStyle
-
Undocumented
See moreDeclaration
Swift
public struct RatingControlStyleModifier<Style> : ViewModifier where Style : RatingControlStyle
-
Undocumented
See moreDeclaration
Swift
public struct RatingControlFormViewStyleModifier<Style> : ViewModifier where Style : RatingControlFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct ReenterSignatureActionStyleModifier<Style> : ViewModifier where Style : ReenterSignatureActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct ResetActionStyleModifier<Style> : ViewModifier where Style : ResetActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct ReviewCountLabelStyleModifier<Style> : ViewModifier where Style : ReviewCountLabelStyle
-
Undocumented
See moreDeclaration
Swift
public struct SaveActionStyleModifier<Style> : ViewModifier where Style : SaveActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct SecondaryActionStyleModifier<Style> : ViewModifier where Style : SecondaryActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct SecondaryTimestampStyleModifier<Style> : ViewModifier where Style : SecondaryTimestampStyle
-
Undocumented
See moreDeclaration
Swift
public struct SectionFooterStyleModifier<Style> : ViewModifier where Style : SectionFooterStyle
-
Undocumented
See moreDeclaration
Swift
public struct SectionHeaderStyleModifier<Style> : ViewModifier where Style : SectionHeaderStyle
-
Undocumented
See moreDeclaration
Swift
public struct SegmentedControlPickerStyleModifier<Style> : ViewModifier where Style : SegmentedControlPickerStyle
-
Undocumented
See moreDeclaration
Swift
public struct SelectAllActionStyleModifier<Style> : ViewModifier where Style : SelectAllActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct SelectedEntriesSectionTitleStyleModifier<Style> : ViewModifier where Style : SelectedEntriesSectionTitleStyle
-
Undocumented
See moreDeclaration
Swift
public struct SideBarStyleModifier<Style> : ViewModifier where Style : SideBarStyle
-
Undocumented
See moreDeclaration
Swift
public struct SideBarListItemStyleModifier<Style> : ViewModifier where Style : SideBarListItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct SignatureCaptureViewStyleModifier<Style> : ViewModifier where Style : SignatureCaptureViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct SingleStepStyleModifier<Style> : ViewModifier where Style : SingleStepStyle
-
Undocumented
See moreDeclaration
Swift
public struct SortFilterViewStyleModifier<Style> : ViewModifier where Style : SortFilterViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct StartSignatureActionStyleModifier<Style> : ViewModifier where Style : StartSignatureActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct StatusStyleModifier<Style> : ViewModifier where Style : StatusStyle
-
Undocumented
See moreDeclaration
Swift
public struct StepProgressIndicatorStyleModifier<Style> : ViewModifier where Style : StepProgressIndicatorStyle
-
Undocumented
See moreDeclaration
Swift
public struct StepperFieldStyleModifier<Style> : ViewModifier where Style : StepperFieldStyle
-
Undocumented
See moreDeclaration
Swift
public struct StepperViewStyleModifier<Style> : ViewModifier where Style : StepperViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct SubAttributeStyleModifier<Style> : ViewModifier where Style : SubAttributeStyle
-
Undocumented
See moreDeclaration
Swift
public struct SubstatusStyleModifier<Style> : ViewModifier where Style : SubstatusStyle
-
Undocumented
See moreDeclaration
Swift
public struct SubtitleStyleModifier<Style> : ViewModifier where Style : SubtitleStyle
-
Undocumented
See moreDeclaration
Swift
public struct SwitchStyleModifier<Style> : ViewModifier where Style : SwitchStyle
-
Undocumented
See moreDeclaration
Swift
public struct SwitchViewStyleModifier<Style> : ViewModifier where Style : SwitchViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct TertiaryActionStyleModifier<Style> : ViewModifier where Style : TertiaryActionStyle
-
Undocumented
See moreDeclaration
Swift
public struct TextFieldFormViewStyleModifier<Style> : ViewModifier where Style : TextFieldFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct TextInputStyleModifier<Style> : ViewModifier where Style : TextInputStyle
-
Undocumented
See moreDeclaration
Swift
public struct TextInputFieldStyleModifier<Style> : ViewModifier where Style : TextInputFieldStyle
-
Undocumented
See moreDeclaration
Swift
public struct TextViewStyleModifier<Style> : ViewModifier where Style : TextViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineStyleModifier<Style> : ViewModifier where Style : TimelineStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineMarkerStyleModifier<Style> : ViewModifier where Style : TimelineMarkerStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineNodeStyleModifier<Style> : ViewModifier where Style : TimelineNodeStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelineNowIndicatorStyleModifier<Style> : ViewModifier where Style : TimelineNowIndicatorStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelinePreviewStyleModifier<Style> : ViewModifier where Style : TimelinePreviewStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimelinePreviewItemStyleModifier<Style> : ViewModifier where Style : TimelinePreviewItemStyle
-
Undocumented
See moreDeclaration
Swift
public struct TimestampStyleModifier<Style> : ViewModifier where Style : TimestampStyle
-
Undocumented
See moreDeclaration
Swift
public struct TitleStyleModifier<Style> : ViewModifier where Style : TitleStyle
-
Undocumented
See moreDeclaration
Swift
public struct TitleFormViewStyleModifier<Style> : ViewModifier where Style : TitleFormViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct ToastMessageStyleModifier<Style> : ViewModifier where Style : ToastMessageStyle
-
Undocumented
See moreDeclaration
Swift
public struct TopDividerStyleModifier<Style> : ViewModifier where Style : TopDividerStyle
-
Undocumented
See moreDeclaration
Swift
public struct TrailingAccessoryStyleModifier<Style> : ViewModifier where Style : TrailingAccessoryStyle
-
Undocumented
See moreDeclaration
Swift
public struct TrendStyleModifier<Style> : ViewModifier where Style : TrendStyle
-
Undocumented
See moreDeclaration
Swift
public struct TrendImageStyleModifier<Style> : ViewModifier where Style : TrendImageStyle
-
Undocumented
See moreDeclaration
Swift
public struct UpperThumbStyleModifier<Style> : ViewModifier where Style : UpperThumbStyle
-
Undocumented
See moreDeclaration
Swift
public struct UserConsentFormStyleModifier<Style> : ViewModifier where Style : UserConsentFormStyle
-
Undocumented
See moreDeclaration
Swift
public struct UserConsentPageStyleModifier<Style> : ViewModifier where Style : UserConsentPageStyle
-
Undocumented
See moreDeclaration
Swift
public struct UserConsentViewStyleModifier<Style> : ViewModifier where Style : UserConsentViewStyle
-
Undocumented
See moreDeclaration
Swift
public struct ValueStyleModifier<Style> : ViewModifier where Style : ValueStyle
-
Undocumented
See moreDeclaration
Swift
public struct ValueLabelStyleModifier<Style> : ViewModifier where Style : ValueLabelStyle
-
Undocumented
See moreDeclaration
Swift
public struct ValuePickerStyleModifier<Style> : ViewModifier where Style : ValuePickerStyle
-
Undocumented
See moreDeclaration
Swift
public struct WatermarkStyleModifier<Style> : ViewModifier where Style : WatermarkStyle
-
Undocumented
See moreDeclaration
Swift
public struct WelcomeScreenStyleModifier<Style> : ViewModifier where Style : WelcomeScreenStyle
-
Undocumented
See moreDeclaration
Swift
public struct XmarkStyleModifier<Style> : ViewModifier where Style : XmarkStyle