├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── AiForms.Maui.SettingsView.sln ├── CONTRIBUTING-ja.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README-ja.md ├── README.md ├── Sample ├── App.xaml ├── App.xaml.cs ├── MauiProgram.cs ├── Platforms │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ └── Resources │ │ │ └── values │ │ │ └── colors.xml │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs ├── Properties │ └── launchSettings.json ├── Resources │ ├── AppIcon │ │ ├── appicon.svg │ │ └── appiconfg.svg │ ├── Fonts │ │ ├── OpenSans-Regular.ttf │ │ └── OpenSans-Semibold.ttf │ ├── Images │ │ ├── dotnet_bot.svg │ │ └── ic_close.svg │ ├── Raw │ │ └── AboutAssets.txt │ ├── Splash │ │ └── splash.svg │ └── Styles │ │ ├── Colors.xaml │ │ └── Styles.xaml ├── Sample.csproj ├── ViewModels │ ├── CustomHeaderViewModel.cs │ ├── DynamicHeaderSizeViewModel.cs │ ├── HeaderSurveyViewModel.cs │ ├── ListViewModel.cs │ ├── MainViewModel.cs │ ├── SurveyViewModel.cs │ └── TapSurveyViewModel.cs └── Views │ ├── Cells │ ├── MyCellA.xaml │ ├── MyCellA.xaml.cs │ ├── MyCellB.xaml │ ├── MyCellB.xaml.cs │ ├── MyCellC.xaml │ ├── MyCellC.xaml.cs │ ├── SliderCell.xaml │ └── SliderCell.xaml.cs │ ├── CustomHeaderPage.xaml │ ├── CustomHeaderPage.xaml.cs │ ├── DynamicHeaderSizePage.xaml │ ├── DynamicHeaderSizePage.xaml.cs │ ├── HeaderSurveyPage.xaml │ ├── HeaderSurveyPage.xaml.cs │ ├── ListPage.xaml │ ├── ListPage.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MyNavigationPage.cs │ ├── SurveyPage.xaml │ ├── SurveyPage.xaml.cs │ ├── TapSurveyPage.xaml │ └── TapSurveyPage.xaml.cs ├── SettingsView ├── BindableBase.cs ├── CellPropertyChangedEventHandler.cs ├── Cells │ ├── ButtonCell.cs │ ├── CellBase.cs │ ├── CheckboxCell.cs │ ├── CommandCell.cs │ ├── CustomCell.cs │ ├── DatePickerCell.cs │ ├── EntryCell.cs │ ├── LabelCell.cs │ ├── NumberPickerCell.cs │ ├── PickerCell.cs │ ├── RadioCell.cs │ ├── SimpleCheckCell.cs │ ├── SwitchCell.cs │ ├── TextPickerCell.cs │ └── TimePickerCell.cs ├── DropEventArgs.cs ├── Extensions │ ├── EnumerableExtension.cs │ ├── FontExtension.cs │ ├── HandlerCleanUpHelper.cs │ └── ViewExtension.cs ├── Handlers │ ├── ButtonCell │ │ ├── ButtonCellHandler.Android.cs │ │ ├── ButtonCellHandler.Net.cs │ │ ├── ButtonCellHandler.cs │ │ └── ButtonCellHandler.iOS.cs │ ├── CellBase │ │ ├── CellBaseHandler.Android.cs │ │ ├── CellBaseHandler.Net.cs │ │ ├── CellBaseHandler.cs │ │ ├── CellBaseHandler.iOS.cs │ │ └── CellBaseView.Net.cs │ ├── CheckboxCell │ │ ├── CheckboxCellHandler.Android.cs │ │ ├── CheckboxCellHandler.Net.cs │ │ ├── CheckboxCellHandler.cs │ │ └── CheckboxCellHandler.iOS.cs │ ├── CommandCell │ │ ├── CommandCellHandler.Android.cs │ │ ├── CommandCellHandler.Net.cs │ │ ├── CommandCellHandler.cs │ │ └── CommandCellHandler.iOS.cs │ ├── CustomCell │ │ ├── CustomCellHandler.Android.cs │ │ ├── CustomCellHandler.Net.cs │ │ ├── CustomCellHandler.cs │ │ └── CustomCellHandler.iOS.cs │ ├── DatePickerCell │ │ ├── DatePickerCellHandler.Android.cs │ │ ├── DatePickerCellHandler.Net.cs │ │ ├── DatePickerCellHandler.cs │ │ └── DatePickerCellHandler.iOS.cs │ ├── EntryCell │ │ ├── EntryCellHandler.Android.cs │ │ ├── EntryCellHandler.Net.cs │ │ ├── EntryCellHandler.cs │ │ └── EntryCellHandler.iOS.cs │ ├── EntryCellBase │ │ ├── EntryCellBaseHandler.Android.cs │ │ ├── EntryCellBaseHandler.Net.cs │ │ ├── EntryCellBaseHandler.cs │ │ └── EntryCellBaseHandler.iOS.cs │ ├── LabelCell │ │ ├── LabelCellHandler.Android.cs │ │ ├── LabelCellHandler.Net.cs │ │ ├── LabelCellHandler.cs │ │ └── LabelCellHandler.iOS.cs │ ├── LabelCellBase │ │ ├── LabelCellBaseHandler.Android.cs │ │ ├── LabelCellBaseHandler.Net.cs │ │ ├── LabelCellBaseHandler.cs │ │ └── LabelCellBaseHandler.iOS.cs │ ├── NumberPickerCell │ │ ├── NumberPickerCellHandler.Android.cs │ │ ├── NumberPickerCellHandler.Net.cs │ │ ├── NumberPickerCellHandler.cs │ │ └── NumberPickerCellHandler.iOS.cs │ ├── RadioCell │ │ ├── RadioCellHandler.Android.cs │ │ ├── RadioCellHandler.Net.cs │ │ ├── RadioCellHandler.cs │ │ └── RadioCellHandler.iOS.cs │ ├── SettingsViewHandler.Android.cs │ ├── SettingsViewHandler.Net.cs │ ├── SettingsViewHandler.cs │ ├── SettingsViewHandler.iOS.cs │ ├── SimpleCheckCell │ │ ├── SimpleCheckCellHandler.Android.cs │ │ ├── SimpleCheckCellHandler.Net.cs │ │ ├── SimpleCheckCellHandler.cs │ │ └── SimpleCheckCellHandler.iOS.cs │ ├── SwitchCell │ │ ├── SwitchCellHandler.Android.cs │ │ ├── SwitchCellHandler.Net.cs │ │ ├── SwitchCellHandler.cs │ │ └── SwitchCellHandler.iOS.cs │ ├── Template │ │ ├── CellHandler.Android.cs │ │ ├── CellHandler.cs │ │ └── CellHandler.iOS.cs │ ├── TextPickerCell │ │ ├── TextPickerCellHandler.Android.cs │ │ ├── TextPickerCellHandler.Net.cs │ │ ├── TextPickerCellHandler.cs │ │ └── TextPickerCellHandler.iOS.cs │ └── TimePickerCell │ │ ├── TimePickerCellHandler.Android.cs │ │ ├── TimePickerCellHandler.Net.cs │ │ ├── TimePickerCellHandler.cs │ │ └── TimePickerCellHandler.iOS.cs ├── MauiAppBuilderExtension.cs ├── MauiHandlerExtension.cs ├── Native │ ├── Android │ │ ├── AiRecyclerView.cs │ │ ├── Cells │ │ │ ├── ButtonCellView.cs │ │ │ ├── CellBaseView.cs │ │ │ ├── CheckboxCellView.cs │ │ │ ├── CommandCellView.cs │ │ │ ├── CustomCellView.cs │ │ │ ├── DatePickerCellView.cs │ │ │ ├── EntryCellView.cs │ │ │ ├── LabelCellView.cs │ │ │ ├── NumberPickerCellView.cs │ │ │ ├── RadioCellView.cs │ │ │ ├── SimpleCheck.cs │ │ │ ├── SimpleCheckCellView.cs │ │ │ ├── SwitchCellView.cs │ │ │ ├── TextPickerCellView.cs │ │ │ └── TimePickerCellView.cs │ │ ├── DrawableUtility.cs │ │ ├── Extensions │ │ │ ├── LayoutAlignmentExtensions.cs │ │ │ ├── TextAlignmentExtensions.cs │ │ │ ├── ViewExtension.cs │ │ │ └── ViewHandlerExtension.cs │ │ ├── FormsViewContainer.cs │ │ ├── HeaderFooterContainer.cs │ │ ├── ModelProxy.cs │ │ ├── SVItemdecoration.cs │ │ ├── SettingsViewLayoutManager.cs │ │ ├── SettingsViewRecyclerAdapter.cs │ │ └── ViewHolders.cs │ └── iOS │ │ ├── AiTableView.cs │ │ ├── Cells │ │ ├── ButtonCellView.cs │ │ ├── CellBaseView.cs │ │ ├── CheckboxCellView.cs │ │ ├── CommandCellView.cs │ │ ├── CustomCellContent.cs │ │ ├── CustomCellView.cs │ │ ├── DatePickerCellView.cs │ │ ├── EntryCellView.cs │ │ ├── LabelCellView.cs │ │ ├── NumberPickerCellView.cs │ │ ├── NumberPickerSource.cs │ │ ├── RadioCellView.cs │ │ ├── SimpleCheckCellView.cs │ │ ├── SwitchCellView.cs │ │ ├── TextPickerCellView.cs │ │ ├── TextPickerSource.cs │ │ └── TimePickerCellView.cs │ │ ├── CustomHeaderFooterView.cs │ │ ├── Extensions │ │ ├── DisposeHelpers.cs │ │ ├── NSObjectExtension.cs │ │ ├── StackViewAlignmentExtensions.cs │ │ ├── TextAlignmentExtensions.cs │ │ └── ThicknessExtensions.cs │ │ ├── KeyboardInsetTracker.cs │ │ ├── PaddingLabel.cs │ │ ├── SettingsTableSource.cs │ │ ├── TextFooterView.cs │ │ └── TextHeaderView.cs ├── NaturalComparer.cs ├── Pages │ ├── PickerPage.xaml │ └── PickerPage.xaml.cs ├── Platforms │ └── Android │ │ └── Resources │ │ ├── drawable │ │ ├── divider.xml │ │ └── ic_navigate_next.xml │ │ ├── layout │ │ ├── cellbaseview.axml │ │ ├── contentcell.axml │ │ ├── footercell.axml │ │ └── headercell.axml │ │ └── values │ │ ├── Strings.xml │ │ ├── attrs.xml │ │ └── styles.xml ├── Section.cs ├── SectionBase.cs ├── SettingsModel.cs ├── SettingsRoot.cs ├── SettingsView.DefineProperites.cs ├── SettingsView.cs ├── SettingsView.csproj ├── SettingsViewConfiguration.cs └── SizeTypeConverter.cs ├── global.json └── images ├── AndroidSS.png ├── cell_layout.png ├── iOS_SS.png └── icon.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/.gitignore -------------------------------------------------------------------------------- /AiForms.Maui.SettingsView.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/AiForms.Maui.SettingsView.sln -------------------------------------------------------------------------------- /CONTRIBUTING-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/CONTRIBUTING-ja.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/README-ja.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/README.md -------------------------------------------------------------------------------- /Sample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/App.xaml -------------------------------------------------------------------------------- /Sample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/App.xaml.cs -------------------------------------------------------------------------------- /Sample/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/MauiProgram.cs -------------------------------------------------------------------------------- /Sample/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /Sample/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /Sample/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /Sample/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Sample/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Sample/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /Sample/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /Sample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Properties/launchSettings.json -------------------------------------------------------------------------------- /Sample/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /Sample/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /Sample/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Sample/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /Sample/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /Sample/Resources/Images/ic_close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Resources/Images/ic_close.svg -------------------------------------------------------------------------------- /Sample/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /Sample/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /Sample/Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /Sample/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Resources/Styles/Styles.xaml -------------------------------------------------------------------------------- /Sample/Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Sample.csproj -------------------------------------------------------------------------------- /Sample/ViewModels/CustomHeaderViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/ViewModels/CustomHeaderViewModel.cs -------------------------------------------------------------------------------- /Sample/ViewModels/DynamicHeaderSizeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/ViewModels/DynamicHeaderSizeViewModel.cs -------------------------------------------------------------------------------- /Sample/ViewModels/HeaderSurveyViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/ViewModels/HeaderSurveyViewModel.cs -------------------------------------------------------------------------------- /Sample/ViewModels/ListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/ViewModels/ListViewModel.cs -------------------------------------------------------------------------------- /Sample/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Sample/ViewModels/SurveyViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/ViewModels/SurveyViewModel.cs -------------------------------------------------------------------------------- /Sample/ViewModels/TapSurveyViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/ViewModels/TapSurveyViewModel.cs -------------------------------------------------------------------------------- /Sample/Views/Cells/MyCellA.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Views/Cells/MyCellA.xaml -------------------------------------------------------------------------------- /Sample/Views/Cells/MyCellA.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Views/Cells/MyCellA.xaml.cs -------------------------------------------------------------------------------- /Sample/Views/Cells/MyCellB.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Views/Cells/MyCellB.xaml -------------------------------------------------------------------------------- /Sample/Views/Cells/MyCellB.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Views/Cells/MyCellB.xaml.cs -------------------------------------------------------------------------------- /Sample/Views/Cells/MyCellC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Views/Cells/MyCellC.xaml -------------------------------------------------------------------------------- /Sample/Views/Cells/MyCellC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Views/Cells/MyCellC.xaml.cs -------------------------------------------------------------------------------- /Sample/Views/Cells/SliderCell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Views/Cells/SliderCell.xaml -------------------------------------------------------------------------------- /Sample/Views/Cells/SliderCell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Views/Cells/SliderCell.xaml.cs -------------------------------------------------------------------------------- /Sample/Views/CustomHeaderPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Views/CustomHeaderPage.xaml -------------------------------------------------------------------------------- /Sample/Views/CustomHeaderPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Views/CustomHeaderPage.xaml.cs -------------------------------------------------------------------------------- /Sample/Views/DynamicHeaderSizePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Views/DynamicHeaderSizePage.xaml -------------------------------------------------------------------------------- /Sample/Views/DynamicHeaderSizePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Views/DynamicHeaderSizePage.xaml.cs -------------------------------------------------------------------------------- /Sample/Views/HeaderSurveyPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Views/HeaderSurveyPage.xaml -------------------------------------------------------------------------------- /Sample/Views/HeaderSurveyPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Views/HeaderSurveyPage.xaml.cs -------------------------------------------------------------------------------- /Sample/Views/ListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Views/ListPage.xaml -------------------------------------------------------------------------------- /Sample/Views/ListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Views/ListPage.xaml.cs -------------------------------------------------------------------------------- /Sample/Views/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Views/MainPage.xaml -------------------------------------------------------------------------------- /Sample/Views/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Views/MainPage.xaml.cs -------------------------------------------------------------------------------- /Sample/Views/MyNavigationPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Views/MyNavigationPage.cs -------------------------------------------------------------------------------- /Sample/Views/SurveyPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Views/SurveyPage.xaml -------------------------------------------------------------------------------- /Sample/Views/SurveyPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Views/SurveyPage.xaml.cs -------------------------------------------------------------------------------- /Sample/Views/TapSurveyPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Views/TapSurveyPage.xaml -------------------------------------------------------------------------------- /Sample/Views/TapSurveyPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/Sample/Views/TapSurveyPage.xaml.cs -------------------------------------------------------------------------------- /SettingsView/BindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/BindableBase.cs -------------------------------------------------------------------------------- /SettingsView/CellPropertyChangedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/CellPropertyChangedEventHandler.cs -------------------------------------------------------------------------------- /SettingsView/Cells/ButtonCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Cells/ButtonCell.cs -------------------------------------------------------------------------------- /SettingsView/Cells/CellBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Cells/CellBase.cs -------------------------------------------------------------------------------- /SettingsView/Cells/CheckboxCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Cells/CheckboxCell.cs -------------------------------------------------------------------------------- /SettingsView/Cells/CommandCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Cells/CommandCell.cs -------------------------------------------------------------------------------- /SettingsView/Cells/CustomCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Cells/CustomCell.cs -------------------------------------------------------------------------------- /SettingsView/Cells/DatePickerCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Cells/DatePickerCell.cs -------------------------------------------------------------------------------- /SettingsView/Cells/EntryCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Cells/EntryCell.cs -------------------------------------------------------------------------------- /SettingsView/Cells/LabelCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Cells/LabelCell.cs -------------------------------------------------------------------------------- /SettingsView/Cells/NumberPickerCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Cells/NumberPickerCell.cs -------------------------------------------------------------------------------- /SettingsView/Cells/PickerCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Cells/PickerCell.cs -------------------------------------------------------------------------------- /SettingsView/Cells/RadioCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Cells/RadioCell.cs -------------------------------------------------------------------------------- /SettingsView/Cells/SimpleCheckCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Cells/SimpleCheckCell.cs -------------------------------------------------------------------------------- /SettingsView/Cells/SwitchCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Cells/SwitchCell.cs -------------------------------------------------------------------------------- /SettingsView/Cells/TextPickerCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Cells/TextPickerCell.cs -------------------------------------------------------------------------------- /SettingsView/Cells/TimePickerCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Cells/TimePickerCell.cs -------------------------------------------------------------------------------- /SettingsView/DropEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/DropEventArgs.cs -------------------------------------------------------------------------------- /SettingsView/Extensions/EnumerableExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Extensions/EnumerableExtension.cs -------------------------------------------------------------------------------- /SettingsView/Extensions/FontExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Extensions/FontExtension.cs -------------------------------------------------------------------------------- /SettingsView/Extensions/HandlerCleanUpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Extensions/HandlerCleanUpHelper.cs -------------------------------------------------------------------------------- /SettingsView/Extensions/ViewExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Extensions/ViewExtension.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/ButtonCell/ButtonCellHandler.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/ButtonCell/ButtonCellHandler.Android.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/ButtonCell/ButtonCellHandler.Net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/ButtonCell/ButtonCellHandler.Net.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/ButtonCell/ButtonCellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/ButtonCell/ButtonCellHandler.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/ButtonCell/ButtonCellHandler.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/ButtonCell/ButtonCellHandler.iOS.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/CellBase/CellBaseHandler.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/CellBase/CellBaseHandler.Android.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/CellBase/CellBaseHandler.Net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/CellBase/CellBaseHandler.Net.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/CellBase/CellBaseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/CellBase/CellBaseHandler.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/CellBase/CellBaseHandler.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/CellBase/CellBaseHandler.iOS.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/CellBase/CellBaseView.Net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/CellBase/CellBaseView.Net.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/CheckboxCell/CheckboxCellHandler.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/CheckboxCell/CheckboxCellHandler.Android.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/CheckboxCell/CheckboxCellHandler.Net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/CheckboxCell/CheckboxCellHandler.Net.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/CheckboxCell/CheckboxCellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/CheckboxCell/CheckboxCellHandler.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/CheckboxCell/CheckboxCellHandler.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/CheckboxCell/CheckboxCellHandler.iOS.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/CommandCell/CommandCellHandler.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/CommandCell/CommandCellHandler.Android.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/CommandCell/CommandCellHandler.Net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/CommandCell/CommandCellHandler.Net.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/CommandCell/CommandCellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/CommandCell/CommandCellHandler.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/CommandCell/CommandCellHandler.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/CommandCell/CommandCellHandler.iOS.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/CustomCell/CustomCellHandler.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/CustomCell/CustomCellHandler.Android.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/CustomCell/CustomCellHandler.Net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/CustomCell/CustomCellHandler.Net.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/CustomCell/CustomCellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/CustomCell/CustomCellHandler.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/CustomCell/CustomCellHandler.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/CustomCell/CustomCellHandler.iOS.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/DatePickerCell/DatePickerCellHandler.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/DatePickerCell/DatePickerCellHandler.Android.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/DatePickerCell/DatePickerCellHandler.Net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/DatePickerCell/DatePickerCellHandler.Net.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/DatePickerCell/DatePickerCellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/DatePickerCell/DatePickerCellHandler.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/DatePickerCell/DatePickerCellHandler.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/DatePickerCell/DatePickerCellHandler.iOS.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/EntryCell/EntryCellHandler.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/EntryCell/EntryCellHandler.Android.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/EntryCell/EntryCellHandler.Net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/EntryCell/EntryCellHandler.Net.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/EntryCell/EntryCellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/EntryCell/EntryCellHandler.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/EntryCell/EntryCellHandler.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/EntryCell/EntryCellHandler.iOS.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/EntryCellBase/EntryCellBaseHandler.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/EntryCellBase/EntryCellBaseHandler.Android.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/EntryCellBase/EntryCellBaseHandler.Net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/EntryCellBase/EntryCellBaseHandler.Net.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/EntryCellBase/EntryCellBaseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/EntryCellBase/EntryCellBaseHandler.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/EntryCellBase/EntryCellBaseHandler.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/EntryCellBase/EntryCellBaseHandler.iOS.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/LabelCell/LabelCellHandler.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/LabelCell/LabelCellHandler.Android.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/LabelCell/LabelCellHandler.Net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/LabelCell/LabelCellHandler.Net.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/LabelCell/LabelCellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/LabelCell/LabelCellHandler.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/LabelCell/LabelCellHandler.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/LabelCell/LabelCellHandler.iOS.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/LabelCellBase/LabelCellBaseHandler.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/LabelCellBase/LabelCellBaseHandler.Android.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/LabelCellBase/LabelCellBaseHandler.Net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/LabelCellBase/LabelCellBaseHandler.Net.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/LabelCellBase/LabelCellBaseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/LabelCellBase/LabelCellBaseHandler.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/LabelCellBase/LabelCellBaseHandler.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/LabelCellBase/LabelCellBaseHandler.iOS.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/NumberPickerCell/NumberPickerCellHandler.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/NumberPickerCell/NumberPickerCellHandler.Android.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/NumberPickerCell/NumberPickerCellHandler.Net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/NumberPickerCell/NumberPickerCellHandler.Net.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/NumberPickerCell/NumberPickerCellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/NumberPickerCell/NumberPickerCellHandler.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/NumberPickerCell/NumberPickerCellHandler.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/NumberPickerCell/NumberPickerCellHandler.iOS.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/RadioCell/RadioCellHandler.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/RadioCell/RadioCellHandler.Android.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/RadioCell/RadioCellHandler.Net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/RadioCell/RadioCellHandler.Net.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/RadioCell/RadioCellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/RadioCell/RadioCellHandler.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/RadioCell/RadioCellHandler.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/RadioCell/RadioCellHandler.iOS.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/SettingsViewHandler.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/SettingsViewHandler.Android.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/SettingsViewHandler.Net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/SettingsViewHandler.Net.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/SettingsViewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/SettingsViewHandler.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/SettingsViewHandler.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/SettingsViewHandler.iOS.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/SimpleCheckCell/SimpleCheckCellHandler.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/SimpleCheckCell/SimpleCheckCellHandler.Android.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/SimpleCheckCell/SimpleCheckCellHandler.Net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/SimpleCheckCell/SimpleCheckCellHandler.Net.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/SimpleCheckCell/SimpleCheckCellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/SimpleCheckCell/SimpleCheckCellHandler.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/SimpleCheckCell/SimpleCheckCellHandler.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/SimpleCheckCell/SimpleCheckCellHandler.iOS.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/SwitchCell/SwitchCellHandler.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/SwitchCell/SwitchCellHandler.Android.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/SwitchCell/SwitchCellHandler.Net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/SwitchCell/SwitchCellHandler.Net.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/SwitchCell/SwitchCellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/SwitchCell/SwitchCellHandler.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/SwitchCell/SwitchCellHandler.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/SwitchCell/SwitchCellHandler.iOS.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/Template/CellHandler.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/Template/CellHandler.Android.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/Template/CellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/Template/CellHandler.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/Template/CellHandler.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/Template/CellHandler.iOS.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/TextPickerCell/TextPickerCellHandler.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/TextPickerCell/TextPickerCellHandler.Android.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/TextPickerCell/TextPickerCellHandler.Net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/TextPickerCell/TextPickerCellHandler.Net.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/TextPickerCell/TextPickerCellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/TextPickerCell/TextPickerCellHandler.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/TextPickerCell/TextPickerCellHandler.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/TextPickerCell/TextPickerCellHandler.iOS.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/TimePickerCell/TimePickerCellHandler.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/TimePickerCell/TimePickerCellHandler.Android.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/TimePickerCell/TimePickerCellHandler.Net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/TimePickerCell/TimePickerCellHandler.Net.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/TimePickerCell/TimePickerCellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/TimePickerCell/TimePickerCellHandler.cs -------------------------------------------------------------------------------- /SettingsView/Handlers/TimePickerCell/TimePickerCellHandler.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Handlers/TimePickerCell/TimePickerCellHandler.iOS.cs -------------------------------------------------------------------------------- /SettingsView/MauiAppBuilderExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/MauiAppBuilderExtension.cs -------------------------------------------------------------------------------- /SettingsView/MauiHandlerExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/MauiHandlerExtension.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/AiRecyclerView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/AiRecyclerView.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/Cells/ButtonCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/Cells/ButtonCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/Cells/CellBaseView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/Cells/CellBaseView.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/Cells/CheckboxCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/Cells/CheckboxCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/Cells/CommandCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/Cells/CommandCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/Cells/CustomCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/Cells/CustomCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/Cells/DatePickerCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/Cells/DatePickerCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/Cells/EntryCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/Cells/EntryCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/Cells/LabelCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/Cells/LabelCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/Cells/NumberPickerCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/Cells/NumberPickerCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/Cells/RadioCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/Cells/RadioCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/Cells/SimpleCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/Cells/SimpleCheck.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/Cells/SimpleCheckCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/Cells/SimpleCheckCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/Cells/SwitchCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/Cells/SwitchCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/Cells/TextPickerCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/Cells/TextPickerCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/Cells/TimePickerCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/Cells/TimePickerCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/DrawableUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/DrawableUtility.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/Extensions/LayoutAlignmentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/Extensions/LayoutAlignmentExtensions.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/Extensions/TextAlignmentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/Extensions/TextAlignmentExtensions.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/Extensions/ViewExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/Extensions/ViewExtension.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/Extensions/ViewHandlerExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/Extensions/ViewHandlerExtension.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/FormsViewContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/FormsViewContainer.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/HeaderFooterContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/HeaderFooterContainer.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/ModelProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/ModelProxy.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/SVItemdecoration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/SVItemdecoration.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/SettingsViewLayoutManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/SettingsViewLayoutManager.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/SettingsViewRecyclerAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/SettingsViewRecyclerAdapter.cs -------------------------------------------------------------------------------- /SettingsView/Native/Android/ViewHolders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/Android/ViewHolders.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/AiTableView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/AiTableView.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/Cells/ButtonCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/Cells/ButtonCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/Cells/CellBaseView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/Cells/CellBaseView.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/Cells/CheckboxCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/Cells/CheckboxCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/Cells/CommandCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/Cells/CommandCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/Cells/CustomCellContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/Cells/CustomCellContent.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/Cells/CustomCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/Cells/CustomCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/Cells/DatePickerCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/Cells/DatePickerCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/Cells/EntryCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/Cells/EntryCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/Cells/LabelCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/Cells/LabelCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/Cells/NumberPickerCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/Cells/NumberPickerCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/Cells/NumberPickerSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/Cells/NumberPickerSource.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/Cells/RadioCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/Cells/RadioCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/Cells/SimpleCheckCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/Cells/SimpleCheckCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/Cells/SwitchCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/Cells/SwitchCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/Cells/TextPickerCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/Cells/TextPickerCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/Cells/TextPickerSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/Cells/TextPickerSource.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/Cells/TimePickerCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/Cells/TimePickerCellView.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/CustomHeaderFooterView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/CustomHeaderFooterView.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/Extensions/DisposeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/Extensions/DisposeHelpers.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/Extensions/NSObjectExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/Extensions/NSObjectExtension.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/Extensions/StackViewAlignmentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/Extensions/StackViewAlignmentExtensions.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/Extensions/TextAlignmentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/Extensions/TextAlignmentExtensions.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/Extensions/ThicknessExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/Extensions/ThicknessExtensions.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/KeyboardInsetTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/KeyboardInsetTracker.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/PaddingLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/PaddingLabel.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/SettingsTableSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/SettingsTableSource.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/TextFooterView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/TextFooterView.cs -------------------------------------------------------------------------------- /SettingsView/Native/iOS/TextHeaderView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Native/iOS/TextHeaderView.cs -------------------------------------------------------------------------------- /SettingsView/NaturalComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/NaturalComparer.cs -------------------------------------------------------------------------------- /SettingsView/Pages/PickerPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Pages/PickerPage.xaml -------------------------------------------------------------------------------- /SettingsView/Pages/PickerPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Pages/PickerPage.xaml.cs -------------------------------------------------------------------------------- /SettingsView/Platforms/Android/Resources/drawable/divider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Platforms/Android/Resources/drawable/divider.xml -------------------------------------------------------------------------------- /SettingsView/Platforms/Android/Resources/drawable/ic_navigate_next.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Platforms/Android/Resources/drawable/ic_navigate_next.xml -------------------------------------------------------------------------------- /SettingsView/Platforms/Android/Resources/layout/cellbaseview.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Platforms/Android/Resources/layout/cellbaseview.axml -------------------------------------------------------------------------------- /SettingsView/Platforms/Android/Resources/layout/contentcell.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Platforms/Android/Resources/layout/contentcell.axml -------------------------------------------------------------------------------- /SettingsView/Platforms/Android/Resources/layout/footercell.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Platforms/Android/Resources/layout/footercell.axml -------------------------------------------------------------------------------- /SettingsView/Platforms/Android/Resources/layout/headercell.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Platforms/Android/Resources/layout/headercell.axml -------------------------------------------------------------------------------- /SettingsView/Platforms/Android/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Platforms/Android/Resources/values/Strings.xml -------------------------------------------------------------------------------- /SettingsView/Platforms/Android/Resources/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Platforms/Android/Resources/values/attrs.xml -------------------------------------------------------------------------------- /SettingsView/Platforms/Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Platforms/Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /SettingsView/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/Section.cs -------------------------------------------------------------------------------- /SettingsView/SectionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/SectionBase.cs -------------------------------------------------------------------------------- /SettingsView/SettingsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/SettingsModel.cs -------------------------------------------------------------------------------- /SettingsView/SettingsRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/SettingsRoot.cs -------------------------------------------------------------------------------- /SettingsView/SettingsView.DefineProperites.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/SettingsView.DefineProperites.cs -------------------------------------------------------------------------------- /SettingsView/SettingsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/SettingsView.cs -------------------------------------------------------------------------------- /SettingsView/SettingsView.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/SettingsView.csproj -------------------------------------------------------------------------------- /SettingsView/SettingsViewConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/SettingsViewConfiguration.cs -------------------------------------------------------------------------------- /SettingsView/SizeTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/SettingsView/SizeTypeConverter.cs -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/global.json -------------------------------------------------------------------------------- /images/AndroidSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/images/AndroidSS.png -------------------------------------------------------------------------------- /images/cell_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/images/cell_layout.png -------------------------------------------------------------------------------- /images/iOS_SS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/images/iOS_SS.png -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muak/AiForms.Maui.SettingsView/HEAD/images/icon.png --------------------------------------------------------------------------------