Skip to content

Commit

Permalink
feat: 🎸 [HCPSDKFIORIUIKIT-2683] [SwiftUI] Slider (#945)
Browse files Browse the repository at this point in the history
  • Loading branch information
JunSong-SH authored Dec 23, 2024
1 parent cf92494 commit 6ca89fa
Show file tree
Hide file tree
Showing 38 changed files with 5,174 additions and 4 deletions.
10 changes: 9 additions & 1 deletion Apps/Examples/Examples.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
archiveVersion = 1;
classes = {
};
objectVersion = 54;
objectVersion = 70;
objects = {

/* Begin PBXBuildFile section */
Expand Down Expand Up @@ -408,6 +408,10 @@
E99A025E2B9EC055008A4B77 /* SearchIconAndPlaceholder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchIconAndPlaceholder.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFileSystemSynchronizedRootGroup section */
3B660C982D156B7000E92505 /* Slider */ = {isa = PBXFileSystemSynchronizedRootGroup; explicitFileTypes = {}; explicitFolders = (); path = Slider; sourceTree = "<group>"; };
/* End PBXFileSystemSynchronizedRootGroup section */

/* Begin PBXFrameworksBuildPhase section */
1F60179129A8439A00DBDCDE /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
Expand Down Expand Up @@ -694,6 +698,7 @@
B1D41B1E291A2D2E004E64A5 /* Picker */,
B8239D8626815C11003455D2 /* ContactItem */,
692F338926556A34009B98DA /* SideBar */,
3B660C982D156B7000E92505 /* Slider */,
1FF3662C264C662A00AB8BD8 /* DimensionSelector */,
97CEF8A92553D6F1008BFBEF /* SignatureView */,
AB988B11263128C400483D87 /* DataTable */,
Expand Down Expand Up @@ -1023,6 +1028,9 @@
dependencies = (
1F6017A029A8439C00DBDCDE /* PBXTargetDependency */,
);
fileSystemSynchronizedGroups = (
3B660C982D156B7000E92505 /* Slider */,
);
name = Examples;
packageProductDependencies = (
8A4A31B824E3564F00B63AF0 /* FioriSwiftUI */,
Expand Down
6 changes: 6 additions & 0 deletions Apps/Examples/Examples/FioriSwiftUICore/CoreContentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,12 @@ struct CoreContentView: View {
{
Text("Step Progress Indicator")
}

NavigationLink(
destination: SliderExample())
{
Text("Slider")
}
}

Section(header: Text("Pickers")) {
Expand Down
Loading

0 comments on commit 6ca89fa

Please sign in to comment.