gitextract_o606_dz2/ ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md └── src/ ├── build/ │ ├── Plugin.SegmentedControl.Netstandard.nuspec │ ├── build.ps1 │ ├── publish.ps1 │ └── publishLocal.ps1 ├── crossplatform/ │ ├── SegCtrl.Droid/ │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── Resources/ │ │ │ ├── AboutResources.txt │ │ │ ├── color/ │ │ │ │ └── segmented_control_text.xml │ │ │ ├── drawable/ │ │ │ │ ├── segmented_control_background.xml │ │ │ │ ├── segmented_control_first_background.xml │ │ │ │ └── segmented_control_last_background.xml │ │ │ ├── layout/ │ │ │ │ ├── RadioButton.axml │ │ │ │ └── RadioGroup.axml │ │ │ └── values/ │ │ │ └── colors.xml │ │ ├── SegCtrl.Droid.csproj │ │ └── SegmentedControlRenderer.cs │ ├── SegCtrl.UWP/ │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── Plugin.Segmented.Control.UWP.rd.xml │ │ ├── SegCtrl.UWP.csproj │ │ ├── SegmentRadioButton.cs │ │ ├── SegmentedControlRenderer.cs │ │ ├── SegmentedRadioButtonStyle.xaml │ │ ├── SegmentedUserControl.xaml │ │ └── SegmentedUserControl.xaml.cs │ ├── SegCtrl.iOS/ │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── SegCtrl.iOS.csproj │ │ └── SegmentedControlRenderer.cs │ └── SegCtrl.macOS/ │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── SegCtrl.macOS.csproj │ └── SegmentedControlRenderer.cs ├── main/ │ ├── SegCtlr.Netstandard/ │ │ ├── Control/ │ │ │ ├── SegmentedControl.cs │ │ │ └── SegmentedControlOption.cs │ │ ├── Event/ │ │ │ ├── ElementChildrenChanging.cs │ │ │ └── SegmentSelectEvent.cs │ │ ├── PreserveAttribute.cs │ │ └── SegCtlr.Netstandard.csproj │ └── SegCtlr.Netstandard.sln └── test/ ├── Test.SegCtrl.Android/ │ ├── Assets/ │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties/ │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources/ │ │ ├── AboutResources.txt │ │ ├── font/ │ │ │ └── comicsaaaans.xml │ │ ├── layout/ │ │ │ ├── Tabbar.axml │ │ │ └── Toolbar.axml │ │ └── values/ │ │ └── styles.xml │ ├── Test.SegCtrl.Android.csproj │ └── Test.SegCtrl.Android.csproj.bak ├── Test.SegCtrl.UWP/ │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── Test.SegCtlr.UWP.csproj ├── Test.SegCtrl.iOS/ │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── Resources/ │ │ └── LaunchScreen.storyboard │ ├── Test.SegCtlr.iOS.csproj │ ├── iTunesArtwork │ └── iTunesArtwork@2x ├── Test.SegCtrl.macOS/ │ ├── AppDelegate.cs │ ├── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ └── Test.SegCtrl.macOS.csproj └── Test.SegCtrl.netstandard/ ├── App.xaml ├── App.xaml.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── MainViewModel.cs ├── SecondPage.xaml ├── SecondPage.xaml.cs ├── Test.SegCtrl.netstandard.csproj ├── ThirdPage.xaml └── ThirdPage.xaml.cs