├── Naxam.CarouselView.Platform.Droid ├── Resources │ └── Resource.designer.cs ├── Utils │ ├── CarouselViewListener.cs │ ├── CarouselEffectTransformer.cs │ ├── CarouselViewAdapter.cs │ └── ViewCellContainer.cs ├── Properties │ └── AssemblyInfo.cs ├── packages.config ├── CarouselViewRenderer.cs └── Naxam.CarouselView.Platform.Droid.csproj ├── .gitignore ├── art └── repo_header.png ├── demo ├── iOS │ ├── Assets.xcassets │ │ ├── Contents.json │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── packages.config │ ├── Entitlements.plist │ ├── Main.cs │ ├── AppDelegate.cs │ ├── LaunchScreen.storyboard │ ├── Info.plist │ └── CarouseViewQs.iOS.csproj ├── Droid │ ├── Resources │ │ ├── drawable │ │ │ └── icon.png │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ ├── Toolbar.axml │ │ │ └── Tabbar.axml │ │ ├── values │ │ │ └── styles.xml │ │ └── AboutResources.txt │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── packages.config │ └── CarouseViewQs.Droid.csproj └── CarouseViewQs │ ├── packages.config │ ├── App.xaml │ ├── CarouseViewQsPage.xaml │ ├── App.xaml.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── CarouseViewQsPage.xaml.cs │ └── CarouseViewQs.csproj ├── Naxam.CarouselView.Forms ├── packages.config ├── Properties │ └── AssemblyInfo.cs ├── CarouselView.cs └── Naxam.CarouselView.Forms.csproj ├── README.md ├── cv.nuspec ├── LICENSE └── CarouselView.sln /Naxam.CarouselView.Platform.Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | packages 4 | *.userprefs 5 | .droidres 6 | -------------------------------------------------------------------------------- /art/repo_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAXAM/carousel-xamarin-forms/HEAD/art/repo_header.png -------------------------------------------------------------------------------- /demo/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /demo/Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAXAM/carousel-xamarin-forms/HEAD/demo/Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /demo/Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAXAM/carousel-xamarin-forms/HEAD/demo/Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /demo/Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAXAM/carousel-xamarin-forms/HEAD/demo/Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /demo/Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAXAM/carousel-xamarin-forms/HEAD/demo/Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /demo/iOS/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /demo/CarouseViewQs/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Naxam.CarouselView.Forms/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /demo/iOS/Entitlements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /demo/CarouseViewQs/App.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /demo/Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /demo/CarouseViewQs/CarouseViewQsPage.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /demo/Droid/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /demo/Droid/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /demo/iOS/Main.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | 5 | using Foundation; 6 | using UIKit; 7 | 8 | namespace CarouseViewQs.iOS 9 | { 10 | public class Application 11 | { 12 | // This is the main entry point of the application. 13 | static void Main(string[] args) 14 | { 15 | // if you want to use a different Application Delegate class from "AppDelegate" 16 | // you can specify it here. 17 | UIApplication.Main(args, null, "AppDelegate"); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /demo/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | 5 | using Foundation; 6 | using UIKit; 7 | 8 | namespace CarouseViewQs.iOS 9 | { 10 | [Register("AppDelegate")] 11 | public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate 12 | { 13 | public override bool FinishedLaunching(UIApplication app, NSDictionary options) 14 | { 15 | global::Xamarin.Forms.Forms.Init(); 16 | 17 | LoadApplication(new App()); 18 | 19 | return base.FinishedLaunching(app, options); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /demo/CarouseViewQs/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using Xamarin.Forms; 2 | 3 | namespace CarouseViewQs 4 | { 5 | public partial class App : Application 6 | { 7 | public App() 8 | { 9 | InitializeComponent(); 10 | 11 | MainPage = new CarouseViewQsPage(); 12 | } 13 | 14 | protected override void OnStart() 15 | { 16 | // Handle when your app starts 17 | } 18 | 19 | protected override void OnSleep() 20 | { 21 | // Handle when your app sleeps 22 | } 23 | 24 | protected override void OnResume() 25 | { 26 | // Handle when your app resumes 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /demo/Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- 1 | Any raw assets you want to be deployed with your application can be placed in 2 | this directory (and child directories) and given a Build Action of "AndroidAsset". 3 | 4 | These files will be deployed with your package and will be accessible using Android's 5 | AssetManager, like this: 6 | 7 | public class ReadAsset : Activity 8 | { 9 | protected override void OnCreate (Bundle bundle) 10 | { 11 | base.OnCreate (bundle); 12 | 13 | InputStream input = Assets.Open ("my_asset.txt"); 14 | } 15 | } 16 | 17 | Additionally, some Android functions will automatically load asset files: 18 | 19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); 20 | -------------------------------------------------------------------------------- /Naxam.CarouselView.Platform.Droid/Utils/CarouselViewListener.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Android.Support.V4.View; 3 | using Naxam.Controls.Forms; 4 | 5 | namespace Naxam.Controls.Platform.Droid 6 | { 7 | class CarouselViewListener : Java.Lang.Object, ViewPager.IOnPageChangeListener 8 | { 9 | public CarouselView Element { get; set; } 10 | 11 | public void OnPageScrolled(int position, float positionOffset, int positionOffsetPixels) { } 12 | 13 | public void OnPageScrollStateChanged(int state) { } 14 | 15 | public void OnPageSelected(int position) 16 | { 17 | if (Element == null) { 18 | return; 19 | } 20 | 21 | Element.SelectedItem = Element.ItemSource[position]; 22 | Element.Position = position; 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /demo/Droid/MainActivity.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | using Android.App; 4 | using Android.Content; 5 | using Android.Content.PM; 6 | using Android.Runtime; 7 | using Android.Views; 8 | using Android.Widget; 9 | using Android.OS; 10 | 11 | namespace CarouseViewQs.Droid 12 | { 13 | [Activity(Label = "CarouseViewQs.Droid", Icon = "@drawable/icon", Theme = "@style/MyTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)] 14 | public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity 15 | { 16 | protected override void OnCreate(Bundle bundle) 17 | { 18 | TabLayoutResource = Resource.Layout.Tabbar; 19 | ToolbarResource = Resource.Layout.Toolbar; 20 | 21 | base.OnCreate(bundle); 22 | 23 | global::Xamarin.Forms.Forms.Init(this, bundle); 24 | 25 | LoadApplication(new App()); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /demo/CarouseViewQs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | 4 | // Information about this assembly is defined by the following attributes. 5 | // Change them to the values specific to your project. 6 | 7 | [assembly: AssemblyTitle("CarouseViewQs")] 8 | [assembly: AssemblyDescription("")] 9 | [assembly: AssemblyConfiguration("")] 10 | [assembly: AssemblyCompany("NAXAM COMPANY LIMITED")] 11 | [assembly: AssemblyProduct("")] 12 | [assembly: AssemblyCopyright("Copyright (c) 2017 NAXAM")] 13 | [assembly: AssemblyTrademark("NAXAM")] 14 | [assembly: AssemblyCulture("")] 15 | 16 | // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". 17 | // The form "{Major}.{Minor}.*" will automatically update the build and revision, 18 | // and "{Major}.{Minor}.{Build}.*" will update just the revision. 19 | 20 | [assembly: AssemblyVersion("1.0.*")] 21 | 22 | // The following attributes are used to specify the signing key for the assembly, 23 | // if desired. See the Mono documentation for more information about signing. 24 | 25 | //[assembly: AssemblyDelaySign(false)] 26 | //[assembly: AssemblyKeyFile("")] 27 | -------------------------------------------------------------------------------- /Naxam.CarouselView.Forms/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | 4 | // Information about this assembly is defined by the following attributes. 5 | // Change them to the values specific to your project. 6 | 7 | [assembly: AssemblyTitle("Naxam.CarouselView.Forms")] 8 | [assembly: AssemblyDescription("")] 9 | [assembly: AssemblyConfiguration("")] 10 | [assembly: AssemblyCompany("NAXAM COMPANY LIMITED")] 11 | [assembly: AssemblyProduct("")] 12 | [assembly: AssemblyCopyright("Copyright (c) 2017 NAXAM")] 13 | [assembly: AssemblyTrademark("NAXAM")] 14 | [assembly: AssemblyCulture("")] 15 | 16 | // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". 17 | // The form "{Major}.{Minor}.*" will automatically update the build and revision, 18 | // and "{Major}.{Minor}.{Build}.*" will update just the revision. 19 | 20 | [assembly: AssemblyVersion("1.0.*")] 21 | 22 | // The following attributes are used to specify the signing key for the assembly, 23 | // if desired. See the Mono documentation for more information about signing. 24 | 25 | //[assembly: AssemblyDelaySign(false)] 26 | //[assembly: AssemblyKeyFile("")] 27 | -------------------------------------------------------------------------------- /demo/CarouseViewQs/CarouseViewQsPage.xaml.cs: -------------------------------------------------------------------------------- 1 | using Naxam.Controls.Forms; 2 | using Xamarin.Forms; 3 | 4 | namespace CarouseViewQs 5 | { 6 | public partial class CarouseViewQsPage : ContentPage 7 | { 8 | CarouselView carousel; 9 | 10 | public CarouseViewQsPage() 11 | { 12 | InitializeComponent(); 13 | 14 | carousel = new CarouselView(); 15 | 16 | carousel.ItemSource = new Color[] { 17 | Color.Red, 18 | Color.Blue, 19 | Color.Green, 20 | Color.Purple, 21 | Color.Yellow 22 | }; 23 | 24 | carousel.ItemTemlate = new DataTemplate(typeof(CarouselViewCell)); 25 | 26 | Content = carousel; 27 | 28 | } 29 | } 30 | 31 | class CarouselViewCell : ViewCell { 32 | public CarouselViewCell() 33 | { 34 | View = new BoxView(); 35 | } 36 | 37 | protected override void OnBindingContextChanged() 38 | { 39 | base.OnBindingContextChanged(); 40 | 41 | View.BackgroundColor = (Color)BindingContext; 42 | } 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /demo/Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using Android.App; 4 | 5 | // Information about this assembly is defined by the following attributes. 6 | // Change them to the values specific to your project. 7 | 8 | [assembly: AssemblyTitle("CarouseViewQs.Droid")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("NAXAM COMPANY LIMITED")] 12 | [assembly: AssemblyProduct("")] 13 | [assembly: AssemblyCopyright("Copyright (c) 2017 NAXAM")] 14 | [assembly: AssemblyTrademark("NAXAM")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". 18 | // The form "{Major}.{Minor}.*" will automatically update the build and revision, 19 | // and "{Major}.{Minor}.{Build}.*" will update just the revision. 20 | 21 | [assembly: AssemblyVersion("1.0.0")] 22 | 23 | // The following attributes are used to specify the signing key for the assembly, 24 | // if desired. See the Mono documentation for more information about signing. 25 | 26 | //[assembly: AssemblyDelaySign(false)] 27 | //[assembly: AssemblyKeyFile("")] 28 | -------------------------------------------------------------------------------- /Naxam.CarouselView.Platform.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | 4 | // Information about this assembly is defined by the following attributes. 5 | // Change them to the values specific to your project. 6 | 7 | [assembly: AssemblyTitle("Naxam.CarouselView.Platform.Droid")] 8 | [assembly: AssemblyDescription("")] 9 | [assembly: AssemblyConfiguration("")] 10 | [assembly: AssemblyCompany("NAXAM COMPANY LIMITED")] 11 | [assembly: AssemblyProduct("")] 12 | [assembly: AssemblyCopyright("Copyright (c) 2017 NAXAM")] 13 | [assembly: AssemblyTrademark("NAXAM")] 14 | [assembly: AssemblyCulture("")] 15 | 16 | // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". 17 | // The form "{Major}.{Minor}.*" will automatically update the build and revision, 18 | // and "{Major}.{Minor}.{Build}.*" will update just the revision. 19 | 20 | [assembly: AssemblyVersion("1.0.0")] 21 | 22 | // The following attributes are used to specify the signing key for the assembly, 23 | // if desired. See the Mono documentation for more information about signing. 24 | 25 | //[assembly: AssemblyDelaySign(false)] 26 | //[assembly: AssemblyKeyFile("")] 27 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | CarouselView - A Xamarin.Forms control 2 | 3 | # CarouselView 4 | A Xamarin.Forms control based on [CarouselEffectTransformer](https://github.com/bhaveshjabuvani-credencys/CarouselEffect/blob/master/app/src/main/java/com/carouseleffect/CarouselEffectTransformer.java) from @bhaveshjabuvani-credencys 5 | 6 | ![Image](https://github.com/bhaveshjabuvani-credencys/CarouselEffect/raw/master/CarouselEffectDemo.gif?raw=true) 7 | 8 | ## About 9 | This project is maintained by Naxam Co.,Ltd.
10 | We specialize in developing mobile applications using Xamarin and native technology stack.
11 | 12 | **Looking for developers for your project?**
13 | 14 | 15 |
16 | 17 | ## Installation 18 | 19 | ``` 20 | Install-Package Naxam.CarouselView 21 | ``` 22 | 23 | ## Usage 24 | ``` 25 | carousel = new CarouselView(); 26 | 27 | carousel.ItemSource = new Color[] { 28 | Color.Red, 29 | Color.Blue, 30 | Color.Green, 31 | Color.Purple, 32 | Color.Yellow 33 | }; 34 | 35 | carousel.ItemTemlate = new DataTemplate(typeof(CarouselViewCell)); 36 | ``` 37 | 38 | ## License 39 | 40 | CarouselView is released under the Apache License license. 41 | See [LICENSE](./LICENSE) for details. -------------------------------------------------------------------------------- /Naxam.CarouselView.Platform.Droid/Utils/CarouselEffectTransformer.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Android.Content; 3 | using Android.Views; 4 | using Android.Support.V4.View; 5 | using Xamarin.Forms.Platform.Android; 6 | 7 | namespace Naxam.Controls.Platform.Droid 8 | { 9 | class CarouselEffectTransformer : Java.Lang.Object, ViewPager.IPageTransformer 10 | { 11 | int maxTranslateOffsetX; 12 | ViewPager viewPager; 13 | 14 | public CarouselEffectTransformer(Context context) 15 | { 16 | maxTranslateOffsetX = (int) context.ToPixels(180); 17 | } 18 | 19 | public void TransformPage(View view, float position) 20 | { 21 | if (viewPager == null) 22 | { 23 | viewPager = (ViewPager)view.Parent; 24 | } 25 | 26 | int leftInScreen = view.Left - viewPager.ScrollX; 27 | int centerXInViewPager = leftInScreen + view.MeasuredWidth / 2; 28 | int offsetX = centerXInViewPager - viewPager.MeasuredWidth / 2; 29 | float offsetRate = offsetX * 0.1f / viewPager.MeasuredWidth; 30 | float scaleFactor = 1 - Math.Abs(offsetRate); 31 | 32 | if (scaleFactor > 0) 33 | { 34 | view.ScaleX = scaleFactor; 35 | view.ScaleY = scaleFactor; 36 | view.TranslationX = -maxTranslateOffsetX * offsetRate; 37 | } 38 | } 39 | } 40 | } -------------------------------------------------------------------------------- /demo/Droid/Resources/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 24 | 27 | 28 | -------------------------------------------------------------------------------- /demo/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /demo/iOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDisplayName 6 | CarouseViewQs 7 | CFBundleName 8 | CarouseViewQs 9 | CFBundleIdentifier 10 | net.naxam.carouseviewqs 11 | CFBundleShortVersionString 12 | 1.0 13 | CFBundleVersion 14 | 1.0 15 | LSRequiresIPhoneOS 16 | 17 | MinimumOSVersion 18 | 8.0 19 | UIDeviceFamily 20 | 21 | 1 22 | 2 23 | 24 | UILaunchStoryboardName 25 | LaunchScreen 26 | UIRequiredDeviceCapabilities 27 | 28 | armv7 29 | 30 | UISupportedInterfaceOrientations 31 | 32 | UIInterfaceOrientationPortrait 33 | UIInterfaceOrientationLandscapeLeft 34 | UIInterfaceOrientationLandscapeRight 35 | 36 | UISupportedInterfaceOrientations~ipad 37 | 38 | UIInterfaceOrientationPortrait 39 | UIInterfaceOrientationPortraitUpsideDown 40 | UIInterfaceOrientationLandscapeLeft 41 | UIInterfaceOrientationLandscapeRight 42 | 43 | XSAppIconAssets 44 | Assets.xcassets/AppIcon.appiconset 45 | 46 | 47 | -------------------------------------------------------------------------------- /Naxam.CarouselView.Platform.Droid/Utils/CarouselViewAdapter.cs: -------------------------------------------------------------------------------- 1 | using Android.Views; 2 | using Android.Support.V4.View; 3 | using Xamarin.Forms; 4 | using Naxam.Controls.Forms; 5 | 6 | namespace Naxam.Controls.Platform.Droid 7 | { 8 | class CarouselViewAdapter : PagerAdapter 9 | { 10 | CarouselView element; 11 | public CarouselView Element 12 | { 13 | get 14 | { 15 | return element; 16 | } 17 | 18 | set 19 | { 20 | if (ReferenceEquals(value, element)) return; 21 | 22 | element = value; 23 | NotifyDataSetChanged(); 24 | } 25 | } 26 | 27 | public override int Count 28 | { 29 | get 30 | { 31 | return Element?.ItemSource?.Count ?? 0; 32 | } 33 | } 34 | 35 | public override bool IsViewFromObject(Android.Views.View view, Java.Lang.Object @object) 36 | { 37 | return view == @object; 38 | } 39 | 40 | public override Java.Lang.Object InstantiateItem(ViewGroup container, int position) 41 | { 42 | var cell = (ViewCell)Element.ItemTemlate.CreateContent(); 43 | cell.Parent = Element; 44 | cell.BindingContext = Element.ItemSource[position]; 45 | 46 | var view = new ViewCellContainer(container.Context, container, cell); 47 | container.AddView(view); 48 | 49 | return view; 50 | } 51 | 52 | public override void DestroyItem(ViewGroup container, int position, Java.Lang.Object @object) 53 | { 54 | container.RemoveView((Android.Views.View)@object); 55 | } 56 | } 57 | } -------------------------------------------------------------------------------- /demo/Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- 1 | Images, layout descriptions, binary blobs and string dictionaries can be included 2 | in your application as resource files. Various Android APIs are designed to 3 | operate on the resource IDs instead of dealing with images, strings or binary blobs 4 | directly. 5 | 6 | For example, a sample Android app that contains a user interface layout (main.axml), 7 | an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png) 8 | would keep its resources in the "Resources" directory of the application: 9 | 10 | Resources/ 11 | drawable/ 12 | icon.png 13 | 14 | layout/ 15 | main.axml 16 | 17 | values/ 18 | strings.xml 19 | 20 | In order to get the build system to recognize Android resources, set the build action to 21 | "AndroidResource". The native Android APIs do not operate directly with filenames, but 22 | instead operate on resource IDs. When you compile an Android application that uses resources, 23 | the build system will package the resources for distribution and generate a class called "R" 24 | (this is an Android convention) that contains the tokens for each one of the resources 25 | included. For example, for the above Resources layout, this is what the R class would expose: 26 | 27 | public class R { 28 | public class drawable { 29 | public const int icon = 0x123; 30 | } 31 | 32 | public class layout { 33 | public const int main = 0x456; 34 | } 35 | 36 | public class strings { 37 | public const int first_string = 0xabc; 38 | public const int second_string = 0xbcd; 39 | } 40 | } 41 | 42 | You would then use R.drawable.icon to reference the drawable/icon.png file, or R.layout.main 43 | to reference the layout/main.axml file, or R.strings.first_string to reference the first 44 | string in the dictionary file values/strings.xml. 45 | -------------------------------------------------------------------------------- /demo/Droid/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /Naxam.CarouselView.Platform.Droid/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /Naxam.CarouselView.Forms/CarouselView.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using Xamarin.Forms; 3 | 4 | namespace Naxam.Controls.Forms 5 | { 6 | public class CarouselView : View 7 | { 8 | public static BindableProperty PositionProperty = BindableProperty.Create( 9 | nameof(Position), 10 | typeof(int), 11 | typeof(CarouselView), 12 | 0, 13 | BindingMode.TwoWay 14 | ); 15 | 16 | public int Position 17 | { 18 | get { return (int)GetValue(PositionProperty); } 19 | set { SetValue(PositionProperty, value); } 20 | } 21 | 22 | public static BindableProperty SelectedItemProperty = BindableProperty.Create( 23 | nameof(SelectedItem), 24 | typeof(object), 25 | typeof(CarouselView), 26 | null, 27 | BindingMode.TwoWay 28 | ); 29 | public object SelectedItem 30 | { 31 | get { return GetValue(SelectedItemProperty); } 32 | set { SetValue(SelectedItemProperty, value); } 33 | } 34 | 35 | public static BindableProperty ItemSourceProperty = BindableProperty.Create( 36 | nameof(ItemSource), 37 | typeof(IList), 38 | typeof(CarouselView), 39 | null, 40 | BindingMode.TwoWay 41 | ); 42 | 43 | public IList ItemSource 44 | { 45 | get { return (IList)GetValue(ItemSourceProperty); } 46 | set { SetValue(ItemSourceProperty, value); } 47 | } 48 | 49 | public static BindableProperty ItemTemlateProperty = BindableProperty.Create( 50 | nameof(ItemTemlate), 51 | typeof(DataTemplate), 52 | typeof(CarouselView), 53 | null, 54 | BindingMode.TwoWay 55 | ); 56 | 57 | public DataTemplate ItemTemlate 58 | { 59 | get { return (DataTemplate)GetValue(ItemTemlateProperty); } 60 | set { SetValue(ItemTemlateProperty, value); } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /cv.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Naxam.CarouselView 6 | 0.0.1 7 | Xamarin Forms Control - CarouselView 8 | Vu Duc Tuyen 9 | NAXAM CO.,LTD 10 | false 11 | Naxam - CarouselView for Xamarin.Forms 12 | CarouselView 0.0.1/Android only 13 | Xamarin Forms Control - CarouselView 14 | https://opensource.org/licenses/MIT 15 | https://avatars1.githubusercontent.com/u/25535951 16 | https://github.com/NAXAM/carousel-xamarin-forms 17 | Copyright (c) 2017 NAXAM 18 | xamarin, Xamarin.Forms, carousel, carousel-view 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /Naxam.CarouselView.Platform.Droid/Utils/ViewCellContainer.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Android.Content; 3 | using Android.Support.V4.View; 4 | using Android.Views; 5 | using Naxam.Controls.Forms; 6 | using Xamarin.Forms; 7 | using Xamarin.Forms.Platform.Android; 8 | 9 | namespace Naxam.Controls.Platform.Droid 10 | { 11 | using Platform = Xamarin.Forms.Platform.Android.Platform; 12 | 13 | class ViewCellContainer : ViewGroup, INativeElementView 14 | { 15 | readonly Android.Views.View _parent; 16 | IVisualElementRenderer _renderer; 17 | ViewCell _viewCell; 18 | ViewGroup _view; 19 | 20 | public ViewCellContainer(Context context, 21 | Android.Views.View parent, 22 | ViewCell viewCell) : base(context) 23 | { 24 | _viewCell = viewCell; 25 | 26 | LayoutParameters = new LayoutParams(LayoutParams.MatchParent, LayoutParams.MatchParent); 27 | 28 | _parent = parent; 29 | 30 | _renderer = Platform.CreateRenderer(_viewCell.View); 31 | Platform.SetRenderer(_viewCell.View, _renderer); 32 | 33 | _view = _renderer.ViewGroup; 34 | AddView(_view); 35 | 36 | UpdateIsEnabled(); 37 | } 38 | 39 | public void Update(object data) 40 | { 41 | _viewCell.BindingContext = data; 42 | } 43 | 44 | public Element Element 45 | { 46 | get { return _viewCell; } 47 | } 48 | 49 | public override bool OnInterceptTouchEvent(MotionEvent ev) 50 | { 51 | if (!Enabled) 52 | return true; 53 | return base.OnInterceptTouchEvent(ev); 54 | } 55 | 56 | public void UpdateIsEnabled() 57 | { 58 | Enabled = _viewCell.IsEnabled; 59 | } 60 | 61 | protected override void OnLayout(bool changed, int l, int t, int r, int b) 62 | { 63 | double width = Context.FromPixels(r - l); 64 | double height = Context.FromPixels(b - t); 65 | 66 | Xamarin.Forms.Layout.LayoutChildIntoBoundingRegion(_renderer.Element, new Rectangle(0, 0, width, height)); 67 | 68 | _renderer.UpdateLayout(); 69 | 70 | System.Diagnostics.Debug.WriteLine($"{nameof(OnLayout)}: {r - l}x{b - t}"); 71 | } 72 | 73 | protected override void OnMeasure(int widthMeasureSpec, int heightMeasureSpec) 74 | { 75 | int width = MeasureSpec.GetSize(widthMeasureSpec); 76 | int height = MeasureSpec.GetSize(heightMeasureSpec); 77 | var x = _renderer.Element; 78 | 79 | SetMeasuredDimension(width, height); 80 | 81 | System.Diagnostics.Debug.WriteLine($"{nameof(OnMeasure)}: {width}x{height}"); 82 | } 83 | } 84 | } 85 | -------------------------------------------------------------------------------- /Naxam.CarouselView.Forms/Naxam.CarouselView.Forms.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | AnyCPU 6 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889} 7 | {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 8 | true 9 | Library 10 | Naxam.Controls.Forms 11 | Naxam.CarouselView.Forms 12 | v4.5 13 | Profile111 14 | 3.1.1 15 | 16 | 17 | true 18 | full 19 | false 20 | bin\Debug 21 | DEBUG; 22 | prompt 23 | 4 24 | 25 | 26 | true 27 | bin\Release 28 | prompt 29 | 4 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | ..\packages\Xamarin.Forms.2.3.4.247\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Core.dll 38 | 39 | 40 | ..\packages\Xamarin.Forms.2.3.4.247\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Platform.dll 41 | 42 | 43 | ..\packages\Xamarin.Forms.2.3.4.247\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Xaml.dll 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /Naxam.CarouselView.Platform.Droid/CarouselViewRenderer.cs: -------------------------------------------------------------------------------- 1 | using Android.Content; 2 | using Xamarin.Forms.Platform.Android; 3 | using Android.Support.V4.View; 4 | using Xamarin.Forms; 5 | using System.ComponentModel; 6 | using Naxam.Controls.Platform.Droid; 7 | using Naxam.Controls.Forms; 8 | 9 | [assembly: ExportRenderer(typeof(CarouselView), typeof(CarouselViewRenderer))] 10 | namespace Naxam.Controls.Platform.Droid 11 | { 12 | public class CarouselViewRenderer : ViewRenderer 13 | { 14 | ViewPager nativeView; 15 | CarouselViewListener listener; 16 | CarouselViewAdapter adapter; 17 | 18 | public CarouselViewRenderer() 19 | { 20 | listener = new CarouselViewListener(); 21 | adapter = new CarouselViewAdapter(); 22 | } 23 | 24 | protected override void OnElementChanged(ElementChangedEventArgs e) 25 | { 26 | base.OnElementChanged(e); 27 | 28 | if (e.NewElement != null) 29 | { 30 | nativeView = Control; 31 | 32 | if (nativeView == null) 33 | { 34 | nativeView = new ViewPager(Context); 35 | nativeView.LayoutParameters = new LayoutParams(LayoutParams.MatchParent, LayoutParams.MatchParent); 36 | nativeView.SetClipToPadding(false); 37 | nativeView.SetClipChildren(false); 38 | 39 | nativeView.OffscreenPageLimit = 5; 40 | nativeView.PageMargin = (int)Context.ToPixels(24); 41 | 42 | var spacing = (int)Context.ToPixels(40); 43 | nativeView.SetPadding(spacing, 0, spacing, 0); 44 | 45 | nativeView.SetPageTransformer(false, new CarouselEffectTransformer(Context)); 46 | nativeView.SetOnPageChangeListener(listener); 47 | nativeView.Adapter = adapter; 48 | 49 | SetNativeControl(nativeView); 50 | } 51 | } 52 | 53 | listener.Element = e.NewElement; 54 | adapter.Element = e.NewElement; 55 | } 56 | 57 | protected override void OnElementPropertyChanged(object sender, PropertyChangedEventArgs e) 58 | { 59 | base.OnElementPropertyChanged(sender, e); 60 | if (e.PropertyName == CarouselView.ItemSourceProperty.PropertyName) 61 | { 62 | adapter.NotifyDataSetChanged(); 63 | } 64 | if (e.PropertyName == CarouselView.PositionProperty.PropertyName) 65 | { 66 | //if forms position change => change native position 67 | if (nativeView.CurrentItem != Element.Position) 68 | { 69 | nativeView.SetCurrentItem(Element.Position, true); 70 | } 71 | } 72 | if (e.PropertyName == CarouselView.SelectedItemProperty.PropertyName) 73 | { 74 | if (nativeView != null && Element.SelectedItem != null) 75 | { 76 | if (Element.SelectedItem != Element.ItemSource[nativeView.CurrentItem]) 77 | { 78 | nativeView.SetCurrentItem(Element.ItemSource.IndexOf(Element.SelectedItem), true); 79 | } 80 | } 81 | } 82 | } 83 | 84 | protected override void OnMeasure(int widthMeasureSpec, int heightMeasureSpec) 85 | { 86 | base.OnMeasure(widthMeasureSpec, heightMeasureSpec); 87 | } 88 | } 89 | } -------------------------------------------------------------------------------- /demo/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "iphone", 5 | "size": "29x29", 6 | "scale": "1x" 7 | }, 8 | { 9 | "idiom": "iphone", 10 | "size": "29x29", 11 | "scale": "2x" 12 | }, 13 | { 14 | "idiom": "iphone", 15 | "size": "29x29", 16 | "scale": "3x" 17 | }, 18 | { 19 | "idiom": "iphone", 20 | "size": "40x40", 21 | "scale": "2x" 22 | }, 23 | { 24 | "idiom": "iphone", 25 | "size": "40x40", 26 | "scale": "3x" 27 | }, 28 | { 29 | "idiom": "iphone", 30 | "size": "57x57", 31 | "scale": "1x" 32 | }, 33 | { 34 | "idiom": "iphone", 35 | "size": "57x57", 36 | "scale": "2x" 37 | }, 38 | { 39 | "idiom": "iphone", 40 | "size": "60x60", 41 | "scale": "2x" 42 | }, 43 | { 44 | "idiom": "iphone", 45 | "size": "60x60", 46 | "scale": "3x" 47 | }, 48 | { 49 | "idiom": "ipad", 50 | "size": "29x29", 51 | "scale": "1x" 52 | }, 53 | { 54 | "idiom": "ipad", 55 | "size": "29x29", 56 | "scale": "2x" 57 | }, 58 | { 59 | "idiom": "ipad", 60 | "size": "40x40", 61 | "scale": "1x" 62 | }, 63 | { 64 | "idiom": "ipad", 65 | "size": "40x40", 66 | "scale": "2x" 67 | }, 68 | { 69 | "idiom": "ipad", 70 | "size": "50x50", 71 | "scale": "1x" 72 | }, 73 | { 74 | "idiom": "ipad", 75 | "size": "50x50", 76 | "scale": "2x" 77 | }, 78 | { 79 | "idiom": "ipad", 80 | "size": "72x72", 81 | "scale": "1x" 82 | }, 83 | { 84 | "idiom": "ipad", 85 | "size": "72x72", 86 | "scale": "2x" 87 | }, 88 | { 89 | "idiom": "ipad", 90 | "size": "76x76", 91 | "scale": "1x" 92 | }, 93 | { 94 | "idiom": "ipad", 95 | "size": "76x76", 96 | "scale": "2x" 97 | }, 98 | { 99 | "size": "24x24", 100 | "idiom": "watch", 101 | "scale": "2x", 102 | "role": "notificationCenter", 103 | "subtype": "38mm" 104 | }, 105 | { 106 | "size": "27.5x27.5", 107 | "idiom": "watch", 108 | "scale": "2x", 109 | "role": "notificationCenter", 110 | "subtype": "42mm" 111 | }, 112 | { 113 | "size": "29x29", 114 | "idiom": "watch", 115 | "role": "companionSettings", 116 | "scale": "2x" 117 | }, 118 | { 119 | "size": "29x29", 120 | "idiom": "watch", 121 | "role": "companionSettings", 122 | "scale": "3x" 123 | }, 124 | { 125 | "size": "40x40", 126 | "idiom": "watch", 127 | "scale": "2x", 128 | "role": "appLauncher", 129 | "subtype": "38mm" 130 | }, 131 | { 132 | "size": "44x44", 133 | "idiom": "watch", 134 | "scale": "2x", 135 | "role": "longLook", 136 | "subtype": "42mm" 137 | }, 138 | { 139 | "size": "86x86", 140 | "idiom": "watch", 141 | "scale": "2x", 142 | "role": "quickLook", 143 | "subtype": "38mm" 144 | }, 145 | { 146 | "size": "98x98", 147 | "idiom": "watch", 148 | "scale": "2x", 149 | "role": "quickLook", 150 | "subtype": "42mm" 151 | } 152 | ], 153 | "info": { 154 | "version": 1, 155 | "author": "xcode" 156 | } 157 | } -------------------------------------------------------------------------------- /demo/CarouseViewQs/CarouseViewQs.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | AnyCPU 6 | {68B497D9-A353-43EF-BE6D-6D162C83843A} 7 | {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 8 | true 9 | Library 10 | CarouseViewQs 11 | CarouseViewQs 12 | v4.5 13 | Profile111 14 | 15 | 16 | true 17 | full 18 | false 19 | bin\Debug 20 | DEBUG; 21 | prompt 22 | 4 23 | 24 | 25 | true 26 | bin\Release 27 | prompt 28 | 4 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | App.xaml 37 | 38 | 39 | CarouseViewQsPage.xaml 40 | 41 | 42 | 43 | 44 | 45 | ..\..\packages\Xamarin.Forms.2.3.4.247\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Core.dll 46 | 47 | 48 | ..\..\packages\Xamarin.Forms.2.3.4.247\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Platform.dll 49 | 50 | 51 | ..\..\packages\Xamarin.Forms.2.3.4.247\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Xaml.dll 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889} 60 | Naxam.CarouselView.Forms 61 | 62 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /demo/iOS/CarouseViewQs.iOS.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | iPhoneSimulator 6 | {979436C0-93C3-4943-8B9D-5EF94ACDA468} 7 | {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 8 | Exe 9 | CarouseViewQs.iOS 10 | CarouseViewQs.iOS 11 | Resources 12 | 13 | 14 | true 15 | full 16 | false 17 | bin\iPhoneSimulator\Debug 18 | DEBUG;ENABLE_TEST_CLOUD; 19 | prompt 20 | 4 21 | iPhone Developer 22 | true 23 | true 24 | true 25 | true 26 | 19493 27 | None 28 | i386, x86_64 29 | HttpClientHandler 30 | 31 | 32 | pdbonly 33 | true 34 | bin\iPhone\Release 35 | 36 | prompt 37 | 4 38 | iPhone Developer 39 | true 40 | Entitlements.plist 41 | SdkOnly 42 | ARMv7, ARM64 43 | HttpClientHandler 44 | 45 | 46 | pdbonly 47 | true 48 | bin\iPhoneSimulator\Release 49 | 50 | prompt 51 | 4 52 | iPhone Developer 53 | true 54 | true 55 | None 56 | i386, x86_64 57 | HttpClientHandler 58 | 59 | 60 | true 61 | full 62 | false 63 | bin\iPhone\Debug 64 | DEBUG;ENABLE_TEST_CLOUD; 65 | prompt 66 | 4 67 | iPhone Developer 68 | true 69 | true 70 | true 71 | true 72 | true 73 | Entitlements.plist 74 | 37022 75 | SdkOnly 76 | ARMv7, ARM64 77 | HttpClientHandler 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | ..\..\packages\Xamarin.Forms.2.3.4.247\lib\Xamarin.iOS10\Xamarin.Forms.Core.dll 86 | 87 | 88 | ..\..\packages\Xamarin.Forms.2.3.4.247\lib\Xamarin.iOS10\Xamarin.Forms.Platform.dll 89 | 90 | 91 | ..\..\packages\Xamarin.Forms.2.3.4.247\lib\Xamarin.iOS10\Xamarin.Forms.Platform.iOS.dll 92 | 93 | 94 | ..\..\packages\Xamarin.Forms.2.3.4.247\lib\Xamarin.iOS10\Xamarin.Forms.Xaml.dll 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | {68B497D9-A353-43EF-BE6D-6D162C83843A} 119 | CarouseViewQs 120 | 121 | 122 | 123 | 124 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /Naxam.CarouselView.Platform.Droid/Naxam.CarouselView.Platform.Droid.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Debug 7 | AnyCPU 8 | {53B97179-A660-40E1-92ED-613A2D4BD789} 9 | {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 10 | Library 11 | Naxam.Controls.Platform.Droid 12 | Naxam.CarouselView.Platform.Droid 13 | v7.1 14 | Resources\Resource.designer.cs 15 | Resource 16 | Resources 17 | Assets 18 | true 19 | 3.1.1 20 | 21 | 22 | true 23 | full 24 | false 25 | bin\Debug 26 | DEBUG; 27 | prompt 28 | 4 29 | None 30 | 31 | 32 | true 33 | pdbonly 34 | true 35 | bin\Release 36 | prompt 37 | 4 38 | true 39 | false 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | ..\packages\Xamarin.Android.Support.Annotations.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Annotations.dll 48 | 49 | 50 | ..\packages\Xamarin.Android.Support.Compat.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Compat.dll 51 | 52 | 53 | ..\packages\Xamarin.Android.Support.Core.UI.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Core.UI.dll 54 | 55 | 56 | ..\packages\Xamarin.Android.Support.Core.Utils.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Core.Utils.dll 57 | 58 | 59 | ..\packages\Xamarin.Android.Support.Media.Compat.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Media.Compat.dll 60 | 61 | 62 | ..\packages\Xamarin.Android.Support.Fragment.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Fragment.dll 63 | 64 | 65 | ..\packages\Xamarin.Android.Support.Transition.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Transition.dll 66 | 67 | 68 | ..\packages\Xamarin.Android.Support.v4.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v4.dll 69 | 70 | 71 | ..\packages\Xamarin.Android.Support.v7.CardView.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.CardView.dll 72 | 73 | 74 | ..\packages\Xamarin.Android.Support.v7.Palette.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.Palette.dll 75 | 76 | 77 | ..\packages\Xamarin.Android.Support.v7.RecyclerView.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.RecyclerView.dll 78 | 79 | 80 | ..\packages\Xamarin.Android.Support.Vector.Drawable.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Vector.Drawable.dll 81 | 82 | 83 | ..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.dll 84 | 85 | 86 | ..\packages\Xamarin.Android.Support.v7.AppCompat.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.AppCompat.dll 87 | 88 | 89 | ..\packages\Xamarin.Android.Support.Design.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Design.dll 90 | 91 | 92 | ..\packages\Xamarin.Android.Support.v7.MediaRouter.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.MediaRouter.dll 93 | 94 | 95 | ..\packages\Xamarin.Forms.2.3.4.247\lib\MonoAndroid10\FormsViewGroup.dll 96 | 97 | 98 | ..\packages\Xamarin.Forms.2.3.4.247\lib\MonoAndroid10\Xamarin.Forms.Core.dll 99 | 100 | 101 | ..\packages\Xamarin.Forms.2.3.4.247\lib\MonoAndroid10\Xamarin.Forms.Platform.Android.dll 102 | 103 | 104 | ..\packages\Xamarin.Forms.2.3.4.247\lib\MonoAndroid10\Xamarin.Forms.Platform.dll 105 | 106 | 107 | ..\packages\Xamarin.Forms.2.3.4.247\lib\MonoAndroid10\Xamarin.Forms.Xaml.dll 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889} 124 | Naxam.CarouselView.Forms 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | -------------------------------------------------------------------------------- /demo/Droid/CarouseViewQs.Droid.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {341E3C61-103E-4E5E-96BC-898181229701} 8 | {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 9 | Library 10 | CarouseViewQs.Droid 11 | CarouseViewQs.Droid 12 | v7.1 13 | True 14 | Resources\Resource.designer.cs 15 | Resource 16 | Properties\AndroidManifest.xml 17 | Resources 18 | Assets 19 | true 20 | 3.1.1 21 | 22 | 23 | true 24 | full 25 | false 26 | bin\Debug 27 | DEBUG; 28 | prompt 29 | 4 30 | None 31 | arm64-v8a;armeabi;armeabi-v7a;x86 32 | 33 | 34 | true 35 | pdbonly 36 | true 37 | bin\Release 38 | prompt 39 | 4 40 | true 41 | false 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | ..\..\packages\Xamarin.Android.Support.Annotations.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Annotations.dll 50 | 51 | 52 | ..\..\packages\Xamarin.Android.Support.Compat.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Compat.dll 53 | 54 | 55 | ..\..\packages\Xamarin.Android.Support.Core.UI.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Core.UI.dll 56 | 57 | 58 | ..\..\packages\Xamarin.Android.Support.Core.Utils.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Core.Utils.dll 59 | 60 | 61 | ..\..\packages\Xamarin.Android.Support.Media.Compat.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Media.Compat.dll 62 | 63 | 64 | ..\..\packages\Xamarin.Android.Support.Fragment.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Fragment.dll 65 | 66 | 67 | ..\..\packages\Xamarin.Android.Support.Transition.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Transition.dll 68 | 69 | 70 | ..\..\packages\Xamarin.Android.Support.v4.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v4.dll 71 | 72 | 73 | ..\..\packages\Xamarin.Android.Support.v7.CardView.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.CardView.dll 74 | 75 | 76 | ..\..\packages\Xamarin.Android.Support.v7.Palette.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.Palette.dll 77 | 78 | 79 | ..\..\packages\Xamarin.Android.Support.v7.RecyclerView.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.RecyclerView.dll 80 | 81 | 82 | ..\..\packages\Xamarin.Android.Support.Vector.Drawable.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Vector.Drawable.dll 83 | 84 | 85 | ..\..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.dll 86 | 87 | 88 | ..\..\packages\Xamarin.Android.Support.v7.AppCompat.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.AppCompat.dll 89 | 90 | 91 | ..\..\packages\Xamarin.Android.Support.Design.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Design.dll 92 | 93 | 94 | ..\..\packages\Xamarin.Android.Support.v7.MediaRouter.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.MediaRouter.dll 95 | 96 | 97 | ..\..\packages\Xamarin.Forms.2.3.4.247\lib\MonoAndroid10\FormsViewGroup.dll 98 | 99 | 100 | ..\..\packages\Xamarin.Forms.2.3.4.247\lib\MonoAndroid10\Xamarin.Forms.Core.dll 101 | 102 | 103 | ..\..\packages\Xamarin.Forms.2.3.4.247\lib\MonoAndroid10\Xamarin.Forms.Platform.Android.dll 104 | 105 | 106 | ..\..\packages\Xamarin.Forms.2.3.4.247\lib\MonoAndroid10\Xamarin.Forms.Platform.dll 107 | 108 | 109 | ..\..\packages\Xamarin.Forms.2.3.4.247\lib\MonoAndroid10\Xamarin.Forms.Xaml.dll 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | {68B497D9-A353-43EF-BE6D-6D162C83843A} 135 | CarouseViewQs 136 | 137 | 138 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889} 139 | Naxam.CarouselView.Forms 140 | 141 | 142 | {53B97179-A660-40E1-92ED-613A2D4BD789} 143 | Naxam.CarouselView.Platform.Droid 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | -------------------------------------------------------------------------------- /CarouselView.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.25420.1 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Naxam.CarouselView.Forms", "Naxam.CarouselView.Forms\Naxam.CarouselView.Forms.csproj", "{2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Naxam.CarouselView.Platform.Droid", "Naxam.CarouselView.Platform.Droid\Naxam.CarouselView.Platform.Droid.csproj", "{53B97179-A660-40E1-92ED-613A2D4BD789}" 9 | EndProject 10 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "demo", "demo", "{C7D4ADAF-1624-4F90-A5CF-BD3E2936B174}" 11 | EndProject 12 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CarouseViewQs", "demo\CarouseViewQs\CarouseViewQs.csproj", "{68B497D9-A353-43EF-BE6D-6D162C83843A}" 13 | EndProject 14 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CarouseViewQs.iOS", "demo\iOS\CarouseViewQs.iOS.csproj", "{979436C0-93C3-4943-8B9D-5EF94ACDA468}" 15 | EndProject 16 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CarouseViewQs.Droid", "demo\Droid\CarouseViewQs.Droid.csproj", "{341E3C61-103E-4E5E-96BC-898181229701}" 17 | EndProject 18 | Global 19 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 20 | AppStore|Any CPU = AppStore|Any CPU 21 | AppStore|ARM = AppStore|ARM 22 | AppStore|iPhone = AppStore|iPhone 23 | AppStore|iPhoneSimulator = AppStore|iPhoneSimulator 24 | AppStore|x64 = AppStore|x64 25 | AppStore|x86 = AppStore|x86 26 | Debug|Any CPU = Debug|Any CPU 27 | Debug|ARM = Debug|ARM 28 | Debug|iPhone = Debug|iPhone 29 | Debug|iPhoneSimulator = Debug|iPhoneSimulator 30 | Debug|x64 = Debug|x64 31 | Debug|x86 = Debug|x86 32 | Release|Any CPU = Release|Any CPU 33 | Release|ARM = Release|ARM 34 | Release|iPhone = Release|iPhone 35 | Release|iPhoneSimulator = Release|iPhoneSimulator 36 | Release|x64 = Release|x64 37 | Release|x86 = Release|x86 38 | EndGlobalSection 39 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 40 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.AppStore|Any CPU.ActiveCfg = Debug|Any CPU 41 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.AppStore|Any CPU.Build.0 = Debug|Any CPU 42 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.AppStore|ARM.ActiveCfg = Debug|Any CPU 43 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.AppStore|ARM.Build.0 = Debug|Any CPU 44 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.AppStore|iPhone.ActiveCfg = Debug|Any CPU 45 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.AppStore|iPhone.Build.0 = Debug|Any CPU 46 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.AppStore|iPhoneSimulator.ActiveCfg = Debug|Any CPU 47 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.AppStore|iPhoneSimulator.Build.0 = Debug|Any CPU 48 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.AppStore|x64.ActiveCfg = Debug|Any CPU 49 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.AppStore|x64.Build.0 = Debug|Any CPU 50 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.AppStore|x86.ActiveCfg = Debug|Any CPU 51 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.AppStore|x86.Build.0 = Debug|Any CPU 52 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 53 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.Debug|Any CPU.Build.0 = Debug|Any CPU 54 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.Debug|ARM.ActiveCfg = Debug|Any CPU 55 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.Debug|ARM.Build.0 = Debug|Any CPU 56 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.Debug|iPhone.ActiveCfg = Debug|Any CPU 57 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.Debug|iPhone.Build.0 = Debug|Any CPU 58 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU 59 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU 60 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.Debug|x64.ActiveCfg = Debug|Any CPU 61 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.Debug|x64.Build.0 = Debug|Any CPU 62 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.Debug|x86.ActiveCfg = Debug|Any CPU 63 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.Debug|x86.Build.0 = Debug|Any CPU 64 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.Release|Any CPU.ActiveCfg = Release|Any CPU 65 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.Release|Any CPU.Build.0 = Release|Any CPU 66 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.Release|ARM.ActiveCfg = Release|Any CPU 67 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.Release|ARM.Build.0 = Release|Any CPU 68 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.Release|iPhone.ActiveCfg = Release|Any CPU 69 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.Release|iPhone.Build.0 = Release|Any CPU 70 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU 71 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.Release|iPhoneSimulator.Build.0 = Release|Any CPU 72 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.Release|x64.ActiveCfg = Release|Any CPU 73 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.Release|x64.Build.0 = Release|Any CPU 74 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.Release|x86.ActiveCfg = Release|Any CPU 75 | {2F1E16E7-3F02-49B8-9CA2-8F7BB235A889}.Release|x86.Build.0 = Release|Any CPU 76 | {53B97179-A660-40E1-92ED-613A2D4BD789}.AppStore|Any CPU.ActiveCfg = Debug|Any CPU 77 | {53B97179-A660-40E1-92ED-613A2D4BD789}.AppStore|Any CPU.Build.0 = Debug|Any CPU 78 | {53B97179-A660-40E1-92ED-613A2D4BD789}.AppStore|ARM.ActiveCfg = Debug|Any CPU 79 | {53B97179-A660-40E1-92ED-613A2D4BD789}.AppStore|ARM.Build.0 = Debug|Any CPU 80 | {53B97179-A660-40E1-92ED-613A2D4BD789}.AppStore|iPhone.ActiveCfg = Debug|Any CPU 81 | {53B97179-A660-40E1-92ED-613A2D4BD789}.AppStore|iPhone.Build.0 = Debug|Any CPU 82 | {53B97179-A660-40E1-92ED-613A2D4BD789}.AppStore|iPhoneSimulator.ActiveCfg = Debug|Any CPU 83 | {53B97179-A660-40E1-92ED-613A2D4BD789}.AppStore|iPhoneSimulator.Build.0 = Debug|Any CPU 84 | {53B97179-A660-40E1-92ED-613A2D4BD789}.AppStore|x64.ActiveCfg = Debug|Any CPU 85 | {53B97179-A660-40E1-92ED-613A2D4BD789}.AppStore|x64.Build.0 = Debug|Any CPU 86 | {53B97179-A660-40E1-92ED-613A2D4BD789}.AppStore|x86.ActiveCfg = Debug|Any CPU 87 | {53B97179-A660-40E1-92ED-613A2D4BD789}.AppStore|x86.Build.0 = Debug|Any CPU 88 | {53B97179-A660-40E1-92ED-613A2D4BD789}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 89 | {53B97179-A660-40E1-92ED-613A2D4BD789}.Debug|Any CPU.Build.0 = Debug|Any CPU 90 | {53B97179-A660-40E1-92ED-613A2D4BD789}.Debug|ARM.ActiveCfg = Debug|Any CPU 91 | {53B97179-A660-40E1-92ED-613A2D4BD789}.Debug|ARM.Build.0 = Debug|Any CPU 92 | {53B97179-A660-40E1-92ED-613A2D4BD789}.Debug|iPhone.ActiveCfg = Debug|Any CPU 93 | {53B97179-A660-40E1-92ED-613A2D4BD789}.Debug|iPhone.Build.0 = Debug|Any CPU 94 | {53B97179-A660-40E1-92ED-613A2D4BD789}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU 95 | {53B97179-A660-40E1-92ED-613A2D4BD789}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU 96 | {53B97179-A660-40E1-92ED-613A2D4BD789}.Debug|x64.ActiveCfg = Debug|Any CPU 97 | {53B97179-A660-40E1-92ED-613A2D4BD789}.Debug|x64.Build.0 = Debug|Any CPU 98 | {53B97179-A660-40E1-92ED-613A2D4BD789}.Debug|x86.ActiveCfg = Debug|Any CPU 99 | {53B97179-A660-40E1-92ED-613A2D4BD789}.Debug|x86.Build.0 = Debug|Any CPU 100 | {53B97179-A660-40E1-92ED-613A2D4BD789}.Release|Any CPU.ActiveCfg = Release|Any CPU 101 | {53B97179-A660-40E1-92ED-613A2D4BD789}.Release|Any CPU.Build.0 = Release|Any CPU 102 | {53B97179-A660-40E1-92ED-613A2D4BD789}.Release|ARM.ActiveCfg = Release|Any CPU 103 | {53B97179-A660-40E1-92ED-613A2D4BD789}.Release|ARM.Build.0 = Release|Any CPU 104 | {53B97179-A660-40E1-92ED-613A2D4BD789}.Release|iPhone.ActiveCfg = Release|Any CPU 105 | {53B97179-A660-40E1-92ED-613A2D4BD789}.Release|iPhone.Build.0 = Release|Any CPU 106 | {53B97179-A660-40E1-92ED-613A2D4BD789}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU 107 | {53B97179-A660-40E1-92ED-613A2D4BD789}.Release|iPhoneSimulator.Build.0 = Release|Any CPU 108 | {53B97179-A660-40E1-92ED-613A2D4BD789}.Release|x64.ActiveCfg = Release|Any CPU 109 | {53B97179-A660-40E1-92ED-613A2D4BD789}.Release|x64.Build.0 = Release|Any CPU 110 | {53B97179-A660-40E1-92ED-613A2D4BD789}.Release|x86.ActiveCfg = Release|Any CPU 111 | {53B97179-A660-40E1-92ED-613A2D4BD789}.Release|x86.Build.0 = Release|Any CPU 112 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.AppStore|Any CPU.ActiveCfg = Debug|Any CPU 113 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.AppStore|Any CPU.Build.0 = Debug|Any CPU 114 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.AppStore|ARM.ActiveCfg = Debug|Any CPU 115 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.AppStore|ARM.Build.0 = Debug|Any CPU 116 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.AppStore|iPhone.ActiveCfg = Debug|Any CPU 117 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.AppStore|iPhone.Build.0 = Debug|Any CPU 118 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.AppStore|iPhoneSimulator.ActiveCfg = Debug|Any CPU 119 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.AppStore|iPhoneSimulator.Build.0 = Debug|Any CPU 120 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.AppStore|x64.ActiveCfg = Debug|Any CPU 121 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.AppStore|x64.Build.0 = Debug|Any CPU 122 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.AppStore|x86.ActiveCfg = Debug|Any CPU 123 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.AppStore|x86.Build.0 = Debug|Any CPU 124 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 125 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.Debug|Any CPU.Build.0 = Debug|Any CPU 126 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.Debug|ARM.ActiveCfg = Debug|Any CPU 127 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.Debug|ARM.Build.0 = Debug|Any CPU 128 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.Debug|iPhone.ActiveCfg = Debug|Any CPU 129 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.Debug|iPhone.Build.0 = Debug|Any CPU 130 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU 131 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU 132 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.Debug|x64.ActiveCfg = Debug|Any CPU 133 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.Debug|x64.Build.0 = Debug|Any CPU 134 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.Debug|x86.ActiveCfg = Debug|Any CPU 135 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.Debug|x86.Build.0 = Debug|Any CPU 136 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.Release|Any CPU.ActiveCfg = Release|Any CPU 137 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.Release|Any CPU.Build.0 = Release|Any CPU 138 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.Release|ARM.ActiveCfg = Release|Any CPU 139 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.Release|ARM.Build.0 = Release|Any CPU 140 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.Release|iPhone.ActiveCfg = Release|Any CPU 141 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.Release|iPhone.Build.0 = Release|Any CPU 142 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU 143 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.Release|iPhoneSimulator.Build.0 = Release|Any CPU 144 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.Release|x64.ActiveCfg = Release|Any CPU 145 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.Release|x64.Build.0 = Release|Any CPU 146 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.Release|x86.ActiveCfg = Release|Any CPU 147 | {68B497D9-A353-43EF-BE6D-6D162C83843A}.Release|x86.Build.0 = Release|Any CPU 148 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.AppStore|Any CPU.ActiveCfg = Debug|iPhoneSimulator 149 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.AppStore|Any CPU.Build.0 = Debug|iPhoneSimulator 150 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.AppStore|ARM.ActiveCfg = Debug|iPhoneSimulator 151 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.AppStore|ARM.Build.0 = Debug|iPhoneSimulator 152 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.AppStore|iPhone.ActiveCfg = Release|iPhone 153 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.AppStore|iPhone.Build.0 = Release|iPhone 154 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.AppStore|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator 155 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.AppStore|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator 156 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.AppStore|x64.ActiveCfg = Debug|iPhoneSimulator 157 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.AppStore|x64.Build.0 = Debug|iPhoneSimulator 158 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.AppStore|x86.ActiveCfg = Debug|iPhoneSimulator 159 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.AppStore|x86.Build.0 = Debug|iPhoneSimulator 160 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.Debug|Any CPU.ActiveCfg = Debug|iPhoneSimulator 161 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.Debug|Any CPU.Build.0 = Debug|iPhoneSimulator 162 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.Debug|ARM.ActiveCfg = Debug|iPhoneSimulator 163 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.Debug|ARM.Build.0 = Debug|iPhoneSimulator 164 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.Debug|iPhone.ActiveCfg = Debug|iPhone 165 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.Debug|iPhone.Build.0 = Debug|iPhone 166 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator 167 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator 168 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.Debug|x64.ActiveCfg = Debug|iPhoneSimulator 169 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.Debug|x64.Build.0 = Debug|iPhoneSimulator 170 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.Debug|x86.ActiveCfg = Debug|iPhoneSimulator 171 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.Debug|x86.Build.0 = Debug|iPhoneSimulator 172 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.Release|Any CPU.ActiveCfg = Release|iPhone 173 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.Release|Any CPU.Build.0 = Release|iPhone 174 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.Release|ARM.ActiveCfg = Release|iPhone 175 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.Release|ARM.Build.0 = Release|iPhone 176 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.Release|iPhone.ActiveCfg = Release|iPhone 177 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.Release|iPhone.Build.0 = Release|iPhone 178 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator 179 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator 180 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.Release|x64.ActiveCfg = Release|iPhone 181 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.Release|x64.Build.0 = Release|iPhone 182 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.Release|x86.ActiveCfg = Release|iPhone 183 | {979436C0-93C3-4943-8B9D-5EF94ACDA468}.Release|x86.Build.0 = Release|iPhone 184 | {341E3C61-103E-4E5E-96BC-898181229701}.AppStore|Any CPU.ActiveCfg = Debug|Any CPU 185 | {341E3C61-103E-4E5E-96BC-898181229701}.AppStore|Any CPU.Build.0 = Debug|Any CPU 186 | {341E3C61-103E-4E5E-96BC-898181229701}.AppStore|ARM.ActiveCfg = Debug|Any CPU 187 | {341E3C61-103E-4E5E-96BC-898181229701}.AppStore|ARM.Build.0 = Debug|Any CPU 188 | {341E3C61-103E-4E5E-96BC-898181229701}.AppStore|iPhone.ActiveCfg = Debug|Any CPU 189 | {341E3C61-103E-4E5E-96BC-898181229701}.AppStore|iPhone.Build.0 = Debug|Any CPU 190 | {341E3C61-103E-4E5E-96BC-898181229701}.AppStore|iPhoneSimulator.ActiveCfg = Debug|Any CPU 191 | {341E3C61-103E-4E5E-96BC-898181229701}.AppStore|iPhoneSimulator.Build.0 = Debug|Any CPU 192 | {341E3C61-103E-4E5E-96BC-898181229701}.AppStore|x64.ActiveCfg = Debug|Any CPU 193 | {341E3C61-103E-4E5E-96BC-898181229701}.AppStore|x64.Build.0 = Debug|Any CPU 194 | {341E3C61-103E-4E5E-96BC-898181229701}.AppStore|x86.ActiveCfg = Debug|Any CPU 195 | {341E3C61-103E-4E5E-96BC-898181229701}.AppStore|x86.Build.0 = Debug|Any CPU 196 | {341E3C61-103E-4E5E-96BC-898181229701}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 197 | {341E3C61-103E-4E5E-96BC-898181229701}.Debug|Any CPU.Build.0 = Debug|Any CPU 198 | {341E3C61-103E-4E5E-96BC-898181229701}.Debug|ARM.ActiveCfg = Debug|Any CPU 199 | {341E3C61-103E-4E5E-96BC-898181229701}.Debug|ARM.Build.0 = Debug|Any CPU 200 | {341E3C61-103E-4E5E-96BC-898181229701}.Debug|iPhone.ActiveCfg = Debug|Any CPU 201 | {341E3C61-103E-4E5E-96BC-898181229701}.Debug|iPhone.Build.0 = Debug|Any CPU 202 | {341E3C61-103E-4E5E-96BC-898181229701}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU 203 | {341E3C61-103E-4E5E-96BC-898181229701}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU 204 | {341E3C61-103E-4E5E-96BC-898181229701}.Debug|x64.ActiveCfg = Debug|Any CPU 205 | {341E3C61-103E-4E5E-96BC-898181229701}.Debug|x64.Build.0 = Debug|Any CPU 206 | {341E3C61-103E-4E5E-96BC-898181229701}.Debug|x86.ActiveCfg = Debug|Any CPU 207 | {341E3C61-103E-4E5E-96BC-898181229701}.Debug|x86.Build.0 = Debug|Any CPU 208 | {341E3C61-103E-4E5E-96BC-898181229701}.Release|Any CPU.ActiveCfg = Release|Any CPU 209 | {341E3C61-103E-4E5E-96BC-898181229701}.Release|Any CPU.Build.0 = Release|Any CPU 210 | {341E3C61-103E-4E5E-96BC-898181229701}.Release|ARM.ActiveCfg = Release|Any CPU 211 | {341E3C61-103E-4E5E-96BC-898181229701}.Release|ARM.Build.0 = Release|Any CPU 212 | {341E3C61-103E-4E5E-96BC-898181229701}.Release|iPhone.ActiveCfg = Release|Any CPU 213 | {341E3C61-103E-4E5E-96BC-898181229701}.Release|iPhone.Build.0 = Release|Any CPU 214 | {341E3C61-103E-4E5E-96BC-898181229701}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU 215 | {341E3C61-103E-4E5E-96BC-898181229701}.Release|iPhoneSimulator.Build.0 = Release|Any CPU 216 | {341E3C61-103E-4E5E-96BC-898181229701}.Release|x64.ActiveCfg = Release|Any CPU 217 | {341E3C61-103E-4E5E-96BC-898181229701}.Release|x64.Build.0 = Release|Any CPU 218 | {341E3C61-103E-4E5E-96BC-898181229701}.Release|x86.ActiveCfg = Release|Any CPU 219 | {341E3C61-103E-4E5E-96BC-898181229701}.Release|x86.Build.0 = Release|Any CPU 220 | EndGlobalSection 221 | GlobalSection(SolutionProperties) = preSolution 222 | HideSolutionNode = FALSE 223 | EndGlobalSection 224 | GlobalSection(MonoDevelopProperties) = preSolution 225 | version = 3.1.1 226 | EndGlobalSection 227 | GlobalSection(NestedProjects) = preSolution 228 | {68B497D9-A353-43EF-BE6D-6D162C83843A} = {C7D4ADAF-1624-4F90-A5CF-BD3E2936B174} 229 | {979436C0-93C3-4943-8B9D-5EF94ACDA468} = {C7D4ADAF-1624-4F90-A5CF-BD3E2936B174} 230 | {341E3C61-103E-4E5E-96BC-898181229701} = {C7D4ADAF-1624-4F90-A5CF-BD3E2936B174} 231 | EndGlobalSection 232 | EndGlobal 233 | --------------------------------------------------------------------------------