gitextract_kiml9m07/ ├── .gitignore ├── AxisSegmentedViewExample/ │ ├── AxisSegmentedViewExample (tvOS)/ │ │ ├── Assets.xcassets/ │ │ │ ├── AccentColor.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── App Icon & Top Shelf Image.brandassets/ │ │ │ │ ├── App Icon - App Store.imagestack/ │ │ │ │ │ ├── Back.imagestacklayer/ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Front.imagestacklayer/ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Middle.imagestacklayer/ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── App Icon.imagestack/ │ │ │ │ │ ├── Back.imagestacklayer/ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Front.imagestacklayer/ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Middle.imagestacklayer/ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Top Shelf Image Wide.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Top Shelf Image.imageset/ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── AxisSegmentedViewExample__tvOS_App.swift │ │ ├── ContentView.swift │ │ ├── CustomStyle.swift │ │ ├── CustomStyleView.swift │ │ ├── Preview Content/ │ │ │ └── Preview Assets.xcassets/ │ │ │ └── Contents.json │ │ ├── SegmentedListView.swift │ │ ├── SegmentedViewWithControl.swift │ │ ├── SelectionItemView.swift │ │ ├── ViewModel/ │ │ │ ├── BacisValue.swift │ │ │ ├── CapsuleValue.swift │ │ │ ├── JellyValue.swift │ │ │ ├── LineValue.swift │ │ │ ├── NeumorphismValue.swift │ │ │ ├── NormalValue.swift │ │ │ ├── ScaleValue.swift │ │ │ └── ViscosityValue.swift │ │ └── WithoutStyleView.swift │ ├── AxisSegmentedViewExample.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── AxisSegmentedView.xcscheme │ ├── Shared/ │ │ ├── Assets.xcassets/ │ │ │ ├── AccentColor.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── image.imageset/ │ │ │ └── Contents.json │ │ ├── AxisSegmentedViewExampleApp.swift │ │ ├── Color+Extensions.swift │ │ ├── ContentView.swift │ │ ├── CustomStyle.swift │ │ ├── CustomStyleView.swift │ │ ├── SegmentedListView.swift │ │ ├── SegmentedViewWithControl.swift │ │ ├── SelectionItemView.swift │ │ ├── ViewModel/ │ │ │ ├── BacisValue.swift │ │ │ ├── CapsuleValue.swift │ │ │ ├── JellyValue.swift │ │ │ ├── LineValue.swift │ │ │ ├── NeumorphismValue.swift │ │ │ ├── NormalValue.swift │ │ │ ├── ScaleValue.swift │ │ │ └── ViscosityValue.swift │ │ └── WithoutStyleView.swift │ └── macOS/ │ └── macOS.entitlements ├── LICENSE ├── Package.swift ├── README.md ├── Sources/ │ └── AxisSegmentedView/ │ ├── AxisSegmentedView.swift │ ├── Private/ │ │ ├── Model/ │ │ │ └── ASItem.swift │ │ ├── Modifiers/ │ │ │ └── ASItemModifier.swift │ │ └── ViewModel/ │ │ ├── ASPositionValue.swift │ │ └── ASSelectionValue.swift │ └── Public/ │ ├── Constants/ │ │ ├── ASConstant.swift │ │ └── ASLineConstant.swift │ ├── Extensions/ │ │ ├── Animation+Extensions.swift │ │ └── View+Extensions.swift │ ├── Modifiers/ │ │ ├── NeumorphismInnerModifier.swift │ │ └── NeumorphismOuterModifier.swift │ ├── Previews/ │ │ └── SegmentedViewPreview.swift │ ├── Shapes/ │ │ └── ASCurveShape.swift │ ├── Styles/ │ │ ├── ASBasicStyle.swift │ │ ├── ASCapsuleStyle.swift │ │ ├── ASJellyStyle.swift │ │ ├── ASLineStyle.swift │ │ ├── ASNeumorphismStyle.swift │ │ ├── ASScaleStyle.swift │ │ └── Movement/ │ │ ├── ASNormalStyle.swift │ │ └── ASViscosityStyle.swift │ └── ViewModel/ │ └── ASStateValue.swift └── Tests/ └── AxisSegmentedViewTests/ └── AxisSegmentedViewTests.swift