├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── images ├── avatarview-border.png ├── avatarview-imagesource.png ├── avatarview-shapes.png ├── avatarview-sizes.png ├── badgeview-animation.gif ├── badgeview-border.png ├── badgeview-customposition.png ├── badgeview-font.png ├── badgeview-position.png ├── basic-avatarview.png ├── basic-badgeview.png ├── basic-chatbubble.png ├── chatbubble-content.png ├── chatbubble-font.png ├── chatbubble-type.png ├── segmentedcontrol-controltemplate.png ├── segmentedcontrol-corner.png ├── segmentedcontrol-icon.png ├── segmentedcontrol-selected.png ├── segmentedcontrol-shadow.png ├── segmentedcontrol-texticon.png ├── templateui-avatarview.png ├── templateui-badgeview.png ├── templateui-carouselview.gif ├── templateui-chatbubble.png ├── templateui-circleprogressbar.png ├── templateui-circularlayout.png ├── templateui-comparerview.gif ├── templateui-datavisualization.gif ├── templateui-divider.png ├── templateui-docklayout.png ├── templateui-gridsplitter.gif ├── templateui-hexlayout.png ├── templateui-home.gif ├── templateui-marquee.gif ├── templateui-pinbox.png ├── templateui-progressbar.gif ├── templateui-rate.png ├── templateui-segmentedcontrol.png ├── templateui-shield.png ├── templateui-slider.gif ├── templateui-snackbar.gif ├── templateui-tag.png ├── templateui-toggleswitch.png └── templateui-treeview.gif └── src ├── TemplateUI.Gallery.Android ├── Assets │ └── AboutAssets.txt ├── MainActivity.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── Resources │ ├── AboutResources.txt │ ├── Resource.designer.cs │ ├── drawable │ │ ├── after.jpg │ │ ├── avatarview.png │ │ ├── badgeview.png │ │ ├── before.jpg │ │ ├── carouselview.png │ │ ├── chart.png │ │ ├── chatbubble.png │ │ ├── circleprogressbar.png │ │ ├── circularlayout.png │ │ ├── comparerview.png │ │ ├── customize.png │ │ ├── divider.png │ │ ├── docklayout.png │ │ ├── file.png │ │ ├── folder.png │ │ ├── gridsplitter.png │ │ ├── hexlayout.png │ │ ├── javier.jpg │ │ ├── marquee.png │ │ ├── pinbox.png │ │ ├── progressbar.png │ │ ├── rate.png │ │ ├── redstar.png │ │ ├── segmentedcontrol.png │ │ ├── shield.png │ │ ├── slider.png │ │ ├── snackbar.png │ │ ├── started.png │ │ ├── tag.png │ │ ├── toggleswitch.png │ │ └── whitefile.png │ ├── layout │ │ ├── Tabbar.xml │ │ └── Toolbar.xml │ ├── mipmap-anydpi-v26 │ │ ├── icon.xml │ │ └── icon_round.xml │ ├── mipmap-hdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ ├── mipmap-mdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ ├── mipmap-xhdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ ├── mipmap-xxhdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ ├── mipmap-xxxhdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ └── values │ │ ├── colors.xml │ │ └── styles.xml ├── TemplateUI.Gallery.Android.csproj ├── mono_crash.1cfb5decbf.0.json ├── mono_crash.mem.1873.1.blob ├── mono_crash.mem.1873.10d51adc0.blob ├── mono_crash.mem.1873.70000a82d000.blob └── mono_crash.mem.1873.70000af3c000.blob ├── TemplateUI.Gallery.Windows ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ ├── Wide310x150Logo.scale-200.png │ ├── after.jpg │ ├── avatarview.png │ ├── badgeview.png │ ├── before.jpg │ ├── carouselview.png │ ├── chart.png │ ├── chatbubble.png │ ├── circleprogressbar.png │ ├── comparerview.png │ ├── customize.png │ ├── file.png │ ├── folder.png │ ├── gridsplitter.png │ ├── javier.jpg │ ├── marquee.png │ ├── progressbar.png │ ├── rate.png │ ├── redstar.png │ ├── segmentedcontrol.png │ ├── shield.png │ ├── slider.png │ ├── started.png │ ├── tag.png │ ├── toggleswitch.png │ └── whitefile.png ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml └── TemplateUI.Gallery.Windows.csproj ├── TemplateUI.Gallery.iOS ├── AppDelegate.cs ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon1024.png │ │ ├── Icon120.png │ │ ├── Icon152.png │ │ ├── Icon167.png │ │ ├── Icon180.png │ │ ├── Icon20.png │ │ ├── Icon29.png │ │ ├── Icon40.png │ │ ├── Icon58.png │ │ ├── Icon60.png │ │ ├── Icon76.png │ │ ├── Icon80.png │ │ └── Icon87.png ├── Entitlements.plist ├── Info.plist ├── Main.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── Default-568h@2x.png │ ├── Default-Portrait.png │ ├── Default-Portrait@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── LaunchScreen.storyboard │ ├── after.jpg │ ├── avatarview.png │ ├── badgeview.png │ ├── before.jpg │ ├── carouselview.png │ ├── chart.png │ ├── chatbubble.png │ ├── circleprogressbar.png │ ├── circularlayout.png │ ├── comparerview.png │ ├── customize.png │ ├── divider.png │ ├── docklayout.png │ ├── file.png │ ├── folder.png │ ├── gridsplitter.png │ ├── hexlayout.png │ ├── javier.jpg │ ├── marquee.png │ ├── pinbox.png │ ├── progressbar.png │ ├── rate.png │ ├── redstar.png │ ├── segmentedcontrol.png │ ├── shield.png │ ├── slider.png │ ├── snackbar.png │ ├── started.png │ ├── tag.png │ ├── toggleswitch.png │ └── whitefile.png └── TemplateUI.Gallery.iOS.csproj ├── TemplateUI.Gallery.macOS ├── AppDelegate.cs ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── AppIcon-128.png │ │ ├── AppIcon-128@2x.png │ │ ├── AppIcon-16.png │ │ ├── AppIcon-16@2x.png │ │ ├── AppIcon-256.png │ │ ├── AppIcon-256@2x.png │ │ ├── AppIcon-32.png │ │ ├── AppIcon-32@2x.png │ │ ├── AppIcon-512.png │ │ ├── AppIcon-512@2x.png │ │ └── Contents.json │ └── Contents.json ├── Entitlements.plist ├── Info.plist ├── Main.cs ├── Main.storyboard ├── Resources │ ├── after.jpg │ ├── avatarview.png │ ├── badgeview.png │ ├── before.jpg │ ├── carouselview.png │ ├── chart.png │ ├── chatbubble.png │ ├── circleprogressbar.png │ ├── circularlayout.png │ ├── comparerview.png │ ├── customize.png │ ├── docklayout.png │ ├── file.png │ ├── folder.png │ ├── gridsplitter.png │ ├── hexlayout.png │ ├── javier.jpg │ ├── marquee.png │ ├── progressbar.png │ ├── rate.png │ ├── redstar.png │ ├── segmentedcontrol.png │ ├── shield.png │ ├── slider.png │ ├── started.png │ ├── tag.png │ ├── toggleswitch.png │ └── whitefile.png ├── TemplateUI.Gallery.macOS.csproj ├── ViewController.cs ├── ViewController.designer.cs └── packages.config ├── TemplateUI.Gallery ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Converters │ ├── ColorToBrushConverter.cs │ ├── GalleryItemStatusToBoolConverter.cs │ ├── GalleryItemStatusToColorConverter.cs │ └── GalleryItemStatusToStringConverter.cs ├── Models │ ├── ChartDataItem.cs │ ├── GalleryItem.cs │ ├── GalleryItemStatus.cs │ └── Monkey.cs ├── Services │ ├── DialogService.cs │ └── NavigationService.cs ├── TemplateUI.Gallery.csproj ├── ViewModels │ ├── BadgeViewModel.cs │ ├── CarouselViewModel.cs │ └── MainViewModel.cs └── Views │ ├── AvatarViewGallery.xaml │ ├── AvatarViewGallery.xaml.cs │ ├── BadgeViewGallery.xaml │ ├── BadgeViewGallery.xaml.cs │ ├── CarouselViewGallery.xaml │ ├── CarouselViewGallery.xaml.cs │ ├── ChatBubbleGallery.xaml │ ├── ChatBubbleGallery.xaml.cs │ ├── CircleProgressBarGallery.xaml │ ├── CircleProgressBarGallery.xaml.cs │ ├── CircularLayoutGallery.xaml │ ├── CircularLayoutGallery.xaml.cs │ ├── ComparerViewGallery.xaml │ ├── ComparerViewGallery.xaml.cs │ ├── CustomNavigationPage.xaml │ ├── CustomNavigationPage.xaml.cs │ ├── DataVisualizationGallery.xaml │ ├── DataVisualizationGallery.xaml.cs │ ├── DividerGallery.xaml │ ├── DividerGallery.xaml.cs │ ├── DockLayoutGallery.xaml │ ├── DockLayoutGallery.xaml.cs │ ├── GridSplitterGallery.xaml │ ├── GridSplitterGallery.xaml.cs │ ├── HexLayoutGallery.xaml │ ├── HexLayoutGallery.xaml.cs │ ├── MainView.xaml │ ├── MainView.xaml.cs │ ├── MarqueeGallery.xaml │ ├── MarqueeGallery.xaml.cs │ ├── PinBoxGallery.xaml │ ├── PinBoxGallery.xaml.cs │ ├── ProgressBarGallery.xaml │ ├── ProgressBarGallery.xaml.cs │ ├── RateGallery.xaml │ ├── RateGallery.xaml.cs │ ├── SegmentedControlGallery.xaml │ ├── SegmentedControlGallery.xaml.cs │ ├── ShieldGallery.xaml │ ├── ShieldGallery.xaml.cs │ ├── SliderGallery.xaml │ ├── SliderGallery.xaml.cs │ ├── SnackBarGallery.xaml │ ├── SnackBarGallery.xaml.cs │ ├── TagGallery.xaml │ ├── TagGallery.xaml.cs │ ├── Templates │ ├── GalleryItemTemplate.xaml │ ├── GalleryItemTemplate.xaml.cs │ ├── TrendingItemTemplate.xaml │ └── TrendingItemTemplate.xaml.cs │ ├── ToggleSwitchGallery.xaml │ ├── ToggleSwitchGallery.xaml.cs │ ├── TreeViewGallery.xaml │ └── TreeViewGallery.xaml.cs ├── TemplateUI.sln └── TemplateUI ├── Controls ├── AvatarView │ ├── AvatarShape.cs │ ├── AvatarSize.cs │ └── AvatarView.cs ├── BadgeView │ ├── BadgeAnimation.cs │ ├── BadgePosition.cs │ ├── BadgeView.cs │ └── IBadgeAnimation.cs ├── CarouselView │ ├── CarouselItemTransition.cs │ ├── CarouselView.cs │ ├── CurrentItemChangedEventArgs.cs │ ├── ICarouselItemTransition.cs │ ├── ICarouselViewController.cs │ ├── PositionChangedEventArgs.cs │ ├── ScrolledEventArgs.cs │ ├── SelectionChangedArgs.cs │ ├── SelectionChangingArgs.cs │ └── SwipeDirection.cs ├── ChatBubble │ ├── ChatBubble.cs │ └── ChatBubbleType.cs ├── CircleProgressBar │ └── CircleProgressBar.cs ├── Common │ └── VisualType.cs ├── ComparerView │ ├── ComparerOrientation.cs │ ├── ComparerThumb.cs │ └── ComparerView.cs ├── Divider │ ├── Divider.cs │ └── DividerOrientation.cs ├── GridSplitter │ ├── ElementToBoolConverter.cs │ ├── GridResizeDirection.cs │ └── GridSplitter.cs ├── Marquee │ ├── Marquee.cs │ └── MarqueeDirection.cs ├── PinBox │ ├── IPinAnimation.cs │ ├── PinAnimation.cs │ ├── PinBox.cs │ ├── PinCompletedEventArgs.cs │ └── PinItem.cs ├── ProgressBar │ └── ProgressBar.cs ├── Rate │ ├── Rate.cs │ ├── RateItem.cs │ └── ValueChangedEventArgs.cs ├── SegmentedControl │ ├── SegmentedControl.cs │ ├── SegmentedItem.cs │ └── SelectedIndexEventArgs.cs ├── Shield │ └── Shield.cs ├── Slider │ └── Slider.cs ├── SnackBar │ ├── ISnackBarAnimation.cs │ ├── SnackBar.cs │ ├── SnackBarAnimation.cs │ └── SnackBarTimer.cs ├── Tag │ └── Tag.cs ├── ToggleSwitch │ ├── ToggleSwitch.cs │ └── ToggledEventArgs.cs └── TreeView │ ├── NodeDoubleTappedEventArgs.cs │ ├── NodeExpandedCollapsedEventArgs.cs │ ├── NodeTappedEventArgs.cs │ ├── SelectionMode.cs │ ├── TreeView.cs │ ├── TreeViewChildrenToBoolConverter.cs │ ├── TreeViewNode.cs │ └── TreeViewNodes.cs ├── DataVisualization ├── AreaChart.cs ├── BarChart.cs ├── Base │ ├── BindingValue.cs │ ├── CategoryAxis.cs │ ├── GridLines.cs │ ├── SerialChart.cs │ └── ValueAxis.cs ├── LineChart.cs └── README.txt ├── Helpers ├── RadianHelper.cs └── VisualTreeHelper.cs ├── Layouts ├── CircularLayout.cs ├── DockLayout.cs └── HexLayout.cs ├── TemplateUI.cs ├── TemplateUI.csproj └── Themes ├── Basic ├── Colors.xaml ├── Colors.xaml.cs ├── Geometries.xaml └── Geometries.xaml.cs ├── Generic.xaml ├── Generic.xaml.cs └── Styles ├── AreaChart.xaml ├── AreaChart.xaml.cs ├── AvatarView.xaml ├── AvatarView.xaml.cs ├── BadgeView.xaml ├── BadgeView.xaml.cs ├── BarChart.xaml ├── BarChart.xaml.cs ├── CarouselView.xaml ├── CarouselView.xaml.cs ├── CategoryAxis.xaml ├── CategoryAxis.xaml.cs ├── ChatBubble.xaml ├── ChatBubble.xaml.cs ├── CircleProgressBar.xaml ├── CircleProgressBar.xaml.cs ├── ComparerView.xaml ├── ComparerView.xaml.cs ├── Divider.xaml ├── Divider.xaml.cs ├── GridLines.xaml ├── GridLines.xaml.cs ├── GridSplitter.xaml ├── GridSplitter.xaml.cs ├── LineChart.xaml ├── LineChart.xaml.cs ├── Marquee.xaml ├── Marquee.xaml.cs ├── PinBox.xaml ├── PinBox.xaml.cs ├── ProgressBar.xaml ├── ProgressBar.xaml.cs ├── Rate.xaml ├── Rate.xaml.cs ├── SegmentedControl.xaml ├── SegmentedControl.xaml.cs ├── Shield.xaml ├── Shield.xaml.cs ├── Slider.xaml ├── Slider.xaml.cs ├── SnackBar.xaml ├── SnackBar.xaml.cs ├── Tag.xaml ├── Tag.xaml.cs ├── ToggleSwitch.xaml ├── ToggleSwitch.xaml.cs ├── TreeView.xaml ├── TreeView.xaml.cs ├── ValueAxis.xaml └── ValueAxis.xaml.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/README.md -------------------------------------------------------------------------------- /images/avatarview-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/avatarview-border.png -------------------------------------------------------------------------------- /images/avatarview-imagesource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/avatarview-imagesource.png -------------------------------------------------------------------------------- /images/avatarview-shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/avatarview-shapes.png -------------------------------------------------------------------------------- /images/avatarview-sizes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/avatarview-sizes.png -------------------------------------------------------------------------------- /images/badgeview-animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/badgeview-animation.gif -------------------------------------------------------------------------------- /images/badgeview-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/badgeview-border.png -------------------------------------------------------------------------------- /images/badgeview-customposition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/badgeview-customposition.png -------------------------------------------------------------------------------- /images/badgeview-font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/badgeview-font.png -------------------------------------------------------------------------------- /images/badgeview-position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/badgeview-position.png -------------------------------------------------------------------------------- /images/basic-avatarview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/basic-avatarview.png -------------------------------------------------------------------------------- /images/basic-badgeview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/basic-badgeview.png -------------------------------------------------------------------------------- /images/basic-chatbubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/basic-chatbubble.png -------------------------------------------------------------------------------- /images/chatbubble-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/chatbubble-content.png -------------------------------------------------------------------------------- /images/chatbubble-font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/chatbubble-font.png -------------------------------------------------------------------------------- /images/chatbubble-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/chatbubble-type.png -------------------------------------------------------------------------------- /images/segmentedcontrol-controltemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/segmentedcontrol-controltemplate.png -------------------------------------------------------------------------------- /images/segmentedcontrol-corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/segmentedcontrol-corner.png -------------------------------------------------------------------------------- /images/segmentedcontrol-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/segmentedcontrol-icon.png -------------------------------------------------------------------------------- /images/segmentedcontrol-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/segmentedcontrol-selected.png -------------------------------------------------------------------------------- /images/segmentedcontrol-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/segmentedcontrol-shadow.png -------------------------------------------------------------------------------- /images/segmentedcontrol-texticon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/segmentedcontrol-texticon.png -------------------------------------------------------------------------------- /images/templateui-avatarview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/templateui-avatarview.png -------------------------------------------------------------------------------- /images/templateui-badgeview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/templateui-badgeview.png -------------------------------------------------------------------------------- /images/templateui-carouselview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/templateui-carouselview.gif -------------------------------------------------------------------------------- /images/templateui-chatbubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/templateui-chatbubble.png -------------------------------------------------------------------------------- /images/templateui-circleprogressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/templateui-circleprogressbar.png -------------------------------------------------------------------------------- /images/templateui-circularlayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/templateui-circularlayout.png -------------------------------------------------------------------------------- /images/templateui-comparerview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/templateui-comparerview.gif -------------------------------------------------------------------------------- /images/templateui-datavisualization.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/templateui-datavisualization.gif -------------------------------------------------------------------------------- /images/templateui-divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/templateui-divider.png -------------------------------------------------------------------------------- /images/templateui-docklayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/templateui-docklayout.png -------------------------------------------------------------------------------- /images/templateui-gridsplitter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/templateui-gridsplitter.gif -------------------------------------------------------------------------------- /images/templateui-hexlayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/templateui-hexlayout.png -------------------------------------------------------------------------------- /images/templateui-home.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/templateui-home.gif -------------------------------------------------------------------------------- /images/templateui-marquee.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/templateui-marquee.gif -------------------------------------------------------------------------------- /images/templateui-pinbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/templateui-pinbox.png -------------------------------------------------------------------------------- /images/templateui-progressbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/templateui-progressbar.gif -------------------------------------------------------------------------------- /images/templateui-rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/templateui-rate.png -------------------------------------------------------------------------------- /images/templateui-segmentedcontrol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/templateui-segmentedcontrol.png -------------------------------------------------------------------------------- /images/templateui-shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/templateui-shield.png -------------------------------------------------------------------------------- /images/templateui-slider.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/templateui-slider.gif -------------------------------------------------------------------------------- /images/templateui-snackbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/templateui-snackbar.gif -------------------------------------------------------------------------------- /images/templateui-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/templateui-tag.png -------------------------------------------------------------------------------- /images/templateui-toggleswitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/templateui-toggleswitch.png -------------------------------------------------------------------------------- /images/templateui-treeview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/images/templateui-treeview.gif -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/MainActivity.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/after.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/after.jpg -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/avatarview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/avatarview.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/badgeview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/badgeview.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/before.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/before.jpg -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/carouselview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/carouselview.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/chart.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/chatbubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/chatbubble.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/circleprogressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/circleprogressbar.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/circularlayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/circularlayout.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/comparerview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/comparerview.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/customize.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/divider.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/docklayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/docklayout.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/file.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/folder.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/gridsplitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/gridsplitter.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/hexlayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/hexlayout.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/javier.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/javier.jpg -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/marquee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/marquee.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/pinbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/pinbox.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/progressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/progressbar.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/rate.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/redstar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/redstar.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/segmentedcontrol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/segmentedcontrol.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/shield.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/slider.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/snackbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/snackbar.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/started.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/started.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/tag.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/toggleswitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/toggleswitch.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/drawable/whitefile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/drawable/whitefile.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/layout/Tabbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/layout/Tabbar.xml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/layout/Toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/layout/Toolbar.xml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/TemplateUI.Gallery.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/TemplateUI.Gallery.Android.csproj -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/mono_crash.1cfb5decbf.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/mono_crash.1cfb5decbf.0.json -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/mono_crash.mem.1873.1.blob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/mono_crash.mem.1873.1.blob -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/mono_crash.mem.1873.10d51adc0.blob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/mono_crash.mem.1873.10d51adc0.blob -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/mono_crash.mem.1873.70000a82d000.blob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/mono_crash.mem.1873.70000a82d000.blob -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Android/mono_crash.mem.1873.70000af3c000.blob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Android/mono_crash.mem.1873.70000af3c000.blob -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/App.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/App.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/after.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/after.jpg -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/avatarview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/avatarview.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/badgeview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/badgeview.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/before.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/before.jpg -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/carouselview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/carouselview.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/chart.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/chatbubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/chatbubble.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/circleprogressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/circleprogressbar.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/comparerview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/comparerview.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/customize.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/file.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/folder.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/gridsplitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/gridsplitter.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/javier.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/javier.jpg -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/marquee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/marquee.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/progressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/progressbar.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/rate.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/redstar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/redstar.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/segmentedcontrol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/segmentedcontrol.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/shield.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/slider.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/started.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/started.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/tag.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/toggleswitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/toggleswitch.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Assets/whitefile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Assets/whitefile.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/MainPage.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Package.appxmanifest -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/Properties/Default.rd.xml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.Windows/TemplateUI.Gallery.Windows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.Windows/TemplateUI.Gallery.Windows.csproj -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Entitlements.plist -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Info.plist -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Main.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/Default.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/after.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/after.jpg -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/avatarview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/avatarview.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/badgeview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/badgeview.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/before.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/before.jpg -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/carouselview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/carouselview.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/chart.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/chatbubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/chatbubble.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/circleprogressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/circleprogressbar.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/circularlayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/circularlayout.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/comparerview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/comparerview.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/customize.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/divider.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/docklayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/docklayout.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/file.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/folder.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/gridsplitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/gridsplitter.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/hexlayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/hexlayout.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/javier.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/javier.jpg -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/marquee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/marquee.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/pinbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/pinbox.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/progressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/progressbar.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/rate.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/redstar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/redstar.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/segmentedcontrol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/segmentedcontrol.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/shield.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/slider.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/snackbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/snackbar.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/started.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/started.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/tag.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/toggleswitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/toggleswitch.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/Resources/whitefile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/Resources/whitefile.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.iOS/TemplateUI.Gallery.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.iOS/TemplateUI.Gallery.iOS.csproj -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/AppDelegate.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-128.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-128@2x.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-16.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-16@2x.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-256.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-256@2x.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-32.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-32@2x.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-512.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Entitlements.plist -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Info.plist -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Main.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Main.storyboard -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/after.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/after.jpg -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/avatarview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/avatarview.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/badgeview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/badgeview.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/before.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/before.jpg -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/carouselview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/carouselview.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/chart.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/chatbubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/chatbubble.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/circleprogressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/circleprogressbar.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/circularlayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/circularlayout.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/comparerview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/comparerview.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/customize.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/docklayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/docklayout.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/file.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/folder.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/gridsplitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/gridsplitter.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/hexlayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/hexlayout.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/javier.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/javier.jpg -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/marquee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/marquee.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/progressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/progressbar.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/rate.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/redstar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/redstar.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/segmentedcontrol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/segmentedcontrol.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/shield.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/slider.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/started.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/started.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/tag.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/toggleswitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/toggleswitch.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/Resources/whitefile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/Resources/whitefile.png -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/TemplateUI.Gallery.macOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/TemplateUI.Gallery.macOS.csproj -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/ViewController.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/ViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/ViewController.designer.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery.macOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery.macOS/packages.config -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/App.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/App.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Converters/ColorToBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Converters/ColorToBrushConverter.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Converters/GalleryItemStatusToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Converters/GalleryItemStatusToBoolConverter.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Converters/GalleryItemStatusToColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Converters/GalleryItemStatusToColorConverter.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Converters/GalleryItemStatusToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Converters/GalleryItemStatusToStringConverter.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Models/ChartDataItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Models/ChartDataItem.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Models/GalleryItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Models/GalleryItem.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Models/GalleryItemStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Models/GalleryItemStatus.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Models/Monkey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Models/Monkey.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Services/DialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Services/DialogService.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Services/NavigationService.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/TemplateUI.Gallery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/TemplateUI.Gallery.csproj -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/ViewModels/BadgeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/ViewModels/BadgeViewModel.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/ViewModels/CarouselViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/ViewModels/CarouselViewModel.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/AvatarViewGallery.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/AvatarViewGallery.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/AvatarViewGallery.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/AvatarViewGallery.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/BadgeViewGallery.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/BadgeViewGallery.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/BadgeViewGallery.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/BadgeViewGallery.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/CarouselViewGallery.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/CarouselViewGallery.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/CarouselViewGallery.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/CarouselViewGallery.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/ChatBubbleGallery.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/ChatBubbleGallery.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/ChatBubbleGallery.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/ChatBubbleGallery.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/CircleProgressBarGallery.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/CircleProgressBarGallery.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/CircleProgressBarGallery.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/CircleProgressBarGallery.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/CircularLayoutGallery.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/CircularLayoutGallery.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/CircularLayoutGallery.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/CircularLayoutGallery.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/ComparerViewGallery.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/ComparerViewGallery.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/ComparerViewGallery.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/ComparerViewGallery.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/CustomNavigationPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/CustomNavigationPage.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/CustomNavigationPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/CustomNavigationPage.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/DataVisualizationGallery.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/DataVisualizationGallery.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/DataVisualizationGallery.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/DataVisualizationGallery.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/DividerGallery.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/DividerGallery.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/DividerGallery.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/DividerGallery.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/DockLayoutGallery.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/DockLayoutGallery.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/DockLayoutGallery.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/DockLayoutGallery.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/GridSplitterGallery.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/GridSplitterGallery.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/GridSplitterGallery.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/GridSplitterGallery.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/HexLayoutGallery.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/HexLayoutGallery.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/HexLayoutGallery.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/HexLayoutGallery.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/MainView.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/MainView.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/MarqueeGallery.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/MarqueeGallery.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/MarqueeGallery.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/MarqueeGallery.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/PinBoxGallery.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/PinBoxGallery.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/PinBoxGallery.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/PinBoxGallery.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/ProgressBarGallery.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/ProgressBarGallery.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/ProgressBarGallery.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/ProgressBarGallery.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/RateGallery.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/RateGallery.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/RateGallery.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/RateGallery.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/SegmentedControlGallery.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/SegmentedControlGallery.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/SegmentedControlGallery.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/SegmentedControlGallery.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/ShieldGallery.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/ShieldGallery.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/ShieldGallery.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/ShieldGallery.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/SliderGallery.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/SliderGallery.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/SliderGallery.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/SliderGallery.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/SnackBarGallery.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/SnackBarGallery.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/SnackBarGallery.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/SnackBarGallery.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/TagGallery.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/TagGallery.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/TagGallery.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/TagGallery.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/Templates/GalleryItemTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/Templates/GalleryItemTemplate.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/Templates/GalleryItemTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/Templates/GalleryItemTemplate.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/Templates/TrendingItemTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/Templates/TrendingItemTemplate.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/Templates/TrendingItemTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/Templates/TrendingItemTemplate.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/ToggleSwitchGallery.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/ToggleSwitchGallery.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/ToggleSwitchGallery.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/ToggleSwitchGallery.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/TreeViewGallery.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/TreeViewGallery.xaml -------------------------------------------------------------------------------- /src/TemplateUI.Gallery/Views/TreeViewGallery.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.Gallery/Views/TreeViewGallery.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI.sln -------------------------------------------------------------------------------- /src/TemplateUI/Controls/AvatarView/AvatarShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/AvatarView/AvatarShape.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/AvatarView/AvatarSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/AvatarView/AvatarSize.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/AvatarView/AvatarView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/AvatarView/AvatarView.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/BadgeView/BadgeAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/BadgeView/BadgeAnimation.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/BadgeView/BadgePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/BadgeView/BadgePosition.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/BadgeView/BadgeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/BadgeView/BadgeView.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/BadgeView/IBadgeAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/BadgeView/IBadgeAnimation.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/CarouselView/CarouselItemTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/CarouselView/CarouselItemTransition.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/CarouselView/CarouselView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/CarouselView/CarouselView.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/CarouselView/CurrentItemChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/CarouselView/CurrentItemChangedEventArgs.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/CarouselView/ICarouselItemTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/CarouselView/ICarouselItemTransition.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/CarouselView/ICarouselViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/CarouselView/ICarouselViewController.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/CarouselView/PositionChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/CarouselView/PositionChangedEventArgs.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/CarouselView/ScrolledEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/CarouselView/ScrolledEventArgs.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/CarouselView/SelectionChangedArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/CarouselView/SelectionChangedArgs.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/CarouselView/SelectionChangingArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/CarouselView/SelectionChangingArgs.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/CarouselView/SwipeDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/CarouselView/SwipeDirection.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/ChatBubble/ChatBubble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/ChatBubble/ChatBubble.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/ChatBubble/ChatBubbleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/ChatBubble/ChatBubbleType.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/CircleProgressBar/CircleProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/CircleProgressBar/CircleProgressBar.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/Common/VisualType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/Common/VisualType.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/ComparerView/ComparerOrientation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/ComparerView/ComparerOrientation.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/ComparerView/ComparerThumb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/ComparerView/ComparerThumb.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/ComparerView/ComparerView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/ComparerView/ComparerView.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/Divider/Divider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/Divider/Divider.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/Divider/DividerOrientation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/Divider/DividerOrientation.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/GridSplitter/ElementToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/GridSplitter/ElementToBoolConverter.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/GridSplitter/GridResizeDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/GridSplitter/GridResizeDirection.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/GridSplitter/GridSplitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/GridSplitter/GridSplitter.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/Marquee/Marquee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/Marquee/Marquee.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/Marquee/MarqueeDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/Marquee/MarqueeDirection.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/PinBox/IPinAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/PinBox/IPinAnimation.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/PinBox/PinAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/PinBox/PinAnimation.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/PinBox/PinBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/PinBox/PinBox.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/PinBox/PinCompletedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/PinBox/PinCompletedEventArgs.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/PinBox/PinItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/PinBox/PinItem.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/ProgressBar/ProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/ProgressBar/ProgressBar.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/Rate/Rate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/Rate/Rate.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/Rate/RateItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/Rate/RateItem.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/Rate/ValueChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/Rate/ValueChangedEventArgs.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/SegmentedControl/SegmentedControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/SegmentedControl/SegmentedControl.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/SegmentedControl/SegmentedItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/SegmentedControl/SegmentedItem.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/SegmentedControl/SelectedIndexEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/SegmentedControl/SelectedIndexEventArgs.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/Shield/Shield.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/Shield/Shield.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/Slider/Slider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/Slider/Slider.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/SnackBar/ISnackBarAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/SnackBar/ISnackBarAnimation.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/SnackBar/SnackBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/SnackBar/SnackBar.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/SnackBar/SnackBarAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/SnackBar/SnackBarAnimation.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/SnackBar/SnackBarTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/SnackBar/SnackBarTimer.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/Tag/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/Tag/Tag.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/ToggleSwitch/ToggleSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/ToggleSwitch/ToggleSwitch.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/ToggleSwitch/ToggledEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/ToggleSwitch/ToggledEventArgs.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/TreeView/NodeDoubleTappedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/TreeView/NodeDoubleTappedEventArgs.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/TreeView/NodeExpandedCollapsedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/TreeView/NodeExpandedCollapsedEventArgs.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/TreeView/NodeTappedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/TreeView/NodeTappedEventArgs.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/TreeView/SelectionMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/TreeView/SelectionMode.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/TreeView/TreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/TreeView/TreeView.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/TreeView/TreeViewChildrenToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/TreeView/TreeViewChildrenToBoolConverter.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/TreeView/TreeViewNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/TreeView/TreeViewNode.cs -------------------------------------------------------------------------------- /src/TemplateUI/Controls/TreeView/TreeViewNodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Controls/TreeView/TreeViewNodes.cs -------------------------------------------------------------------------------- /src/TemplateUI/DataVisualization/AreaChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/DataVisualization/AreaChart.cs -------------------------------------------------------------------------------- /src/TemplateUI/DataVisualization/BarChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/DataVisualization/BarChart.cs -------------------------------------------------------------------------------- /src/TemplateUI/DataVisualization/Base/BindingValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/DataVisualization/Base/BindingValue.cs -------------------------------------------------------------------------------- /src/TemplateUI/DataVisualization/Base/CategoryAxis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/DataVisualization/Base/CategoryAxis.cs -------------------------------------------------------------------------------- /src/TemplateUI/DataVisualization/Base/GridLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/DataVisualization/Base/GridLines.cs -------------------------------------------------------------------------------- /src/TemplateUI/DataVisualization/Base/SerialChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/DataVisualization/Base/SerialChart.cs -------------------------------------------------------------------------------- /src/TemplateUI/DataVisualization/Base/ValueAxis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/DataVisualization/Base/ValueAxis.cs -------------------------------------------------------------------------------- /src/TemplateUI/DataVisualization/LineChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/DataVisualization/LineChart.cs -------------------------------------------------------------------------------- /src/TemplateUI/DataVisualization/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/DataVisualization/README.txt -------------------------------------------------------------------------------- /src/TemplateUI/Helpers/RadianHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Helpers/RadianHelper.cs -------------------------------------------------------------------------------- /src/TemplateUI/Helpers/VisualTreeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Helpers/VisualTreeHelper.cs -------------------------------------------------------------------------------- /src/TemplateUI/Layouts/CircularLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Layouts/CircularLayout.cs -------------------------------------------------------------------------------- /src/TemplateUI/Layouts/DockLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Layouts/DockLayout.cs -------------------------------------------------------------------------------- /src/TemplateUI/Layouts/HexLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Layouts/HexLayout.cs -------------------------------------------------------------------------------- /src/TemplateUI/TemplateUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/TemplateUI.cs -------------------------------------------------------------------------------- /src/TemplateUI/TemplateUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/TemplateUI.csproj -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Basic/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Basic/Colors.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Basic/Colors.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Basic/Colors.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Basic/Geometries.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Basic/Geometries.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Basic/Geometries.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Basic/Geometries.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Generic.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Generic.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Generic.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/AreaChart.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/AreaChart.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/AreaChart.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/AreaChart.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/AvatarView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/AvatarView.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/AvatarView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/AvatarView.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/BadgeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/BadgeView.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/BadgeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/BadgeView.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/BarChart.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/BarChart.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/BarChart.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/BarChart.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/CarouselView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/CarouselView.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/CarouselView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/CarouselView.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/CategoryAxis.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/CategoryAxis.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/CategoryAxis.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/CategoryAxis.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/ChatBubble.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/ChatBubble.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/ChatBubble.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/ChatBubble.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/CircleProgressBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/CircleProgressBar.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/CircleProgressBar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/CircleProgressBar.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/ComparerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/ComparerView.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/ComparerView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/ComparerView.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/Divider.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/Divider.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/Divider.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/Divider.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/GridLines.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/GridLines.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/GridLines.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/GridLines.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/GridSplitter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/GridSplitter.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/GridSplitter.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/GridSplitter.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/LineChart.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/LineChart.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/LineChart.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/LineChart.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/Marquee.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/Marquee.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/Marquee.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/Marquee.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/PinBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/PinBox.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/PinBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/PinBox.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/ProgressBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/ProgressBar.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/ProgressBar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/ProgressBar.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/Rate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/Rate.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/Rate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/Rate.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/SegmentedControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/SegmentedControl.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/SegmentedControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/SegmentedControl.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/Shield.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/Shield.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/Shield.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/Shield.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/Slider.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/Slider.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/Slider.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/Slider.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/SnackBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/SnackBar.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/SnackBar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/SnackBar.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/Tag.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/Tag.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/Tag.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/Tag.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/ToggleSwitch.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/ToggleSwitch.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/ToggleSwitch.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/ToggleSwitch.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/TreeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/TreeView.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/TreeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/TreeView.xaml.cs -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/ValueAxis.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/ValueAxis.xaml -------------------------------------------------------------------------------- /src/TemplateUI/Themes/Styles/ValueAxis.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/TemplateUI/HEAD/src/TemplateUI/Themes/Styles/ValueAxis.xaml.cs --------------------------------------------------------------------------------