├── README.md
├── CustomBottomMenu
├── CustomBottomMenu.iOS
│ ├── iTunesArtwork
│ ├── iTunesArtwork@2x
│ ├── Resources
│ │ ├── Default.png
│ │ ├── Icon-76.png
│ │ ├── Default@2x.png
│ │ ├── Icon-60@2x.png
│ │ ├── Icon-60@3x.png
│ │ ├── Icon-76@2x.png
│ │ ├── Icon-Small.png
│ │ ├── Icon-Small-40.png
│ │ ├── Icon-Small@2x.png
│ │ ├── Icon-Small@3x.png
│ │ ├── ic_about@2x.png
│ │ ├── ic_contact@2x.png
│ │ ├── Default-568h@2x.png
│ │ ├── Default-Portrait.png
│ │ ├── Icon-Small-40@2x.png
│ │ ├── Icon-Small-40@3x.png
│ │ ├── Default-Portrait@2x.png
│ │ └── LaunchScreen.storyboard
│ ├── packages.config
│ ├── Entitlements.plist
│ ├── Main.cs
│ ├── AppDelegate.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Info.plist
│ └── CustomBottomMenu.iOS.csproj
├── CustomBottomMenu.Droid
│ ├── Resources
│ │ ├── drawable
│ │ │ └── icon.png
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-xhdpi
│ │ │ └── icon.png
│ │ ├── drawable-xxhdpi
│ │ │ ├── icon.png
│ │ │ ├── ic_about.png
│ │ │ └── ic_contact.png
│ │ ├── values
│ │ │ ├── Colors.xml
│ │ │ └── Style.xml
│ │ ├── layout
│ │ │ └── toolbar.xml
│ │ └── AboutResources.txt
│ ├── Properties
│ │ ├── AndroidManifest.xml
│ │ └── AssemblyInfo.cs
│ ├── Assets
│ │ └── AboutAssets.txt
│ ├── MainActivity.cs
│ ├── packages.config
│ ├── Renderers
│ │ └── MainPageRenderer.cs
│ └── CustomBottomMenu.Droid.csproj
└── CustomBottomMenu
│ ├── packages.config
│ ├── Pages
│ ├── AboutPage.xaml.cs
│ ├── ContactsPage.xaml.cs
│ ├── BaseContentPage.cs
│ ├── MainPage.xaml.cs
│ ├── MainPage.xaml
│ ├── ContactsPage.xaml
│ └── AboutPage.xaml
│ ├── App.cs
│ ├── Properties
│ └── AssemblyInfo.cs
│ └── CustomBottomMenu.csproj
├── .gitattributes
├── .gitignore
└── CustomBottomMenu.sln
/README.md:
--------------------------------------------------------------------------------
1 | # Custom tabbed page renderer for Xamarin Forms Android
2 |
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.iOS/iTunesArtwork:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smetlov/XamarinFormsAndroidBottomMenu/HEAD/CustomBottomMenu/CustomBottomMenu.iOS/iTunesArtwork
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.iOS/iTunesArtwork@2x:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smetlov/XamarinFormsAndroidBottomMenu/HEAD/CustomBottomMenu/CustomBottomMenu.iOS/iTunesArtwork@2x
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smetlov/XamarinFormsAndroidBottomMenu/HEAD/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Default.png
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Icon-76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smetlov/XamarinFormsAndroidBottomMenu/HEAD/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Icon-76.png
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Default@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smetlov/XamarinFormsAndroidBottomMenu/HEAD/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Default@2x.png
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Icon-60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smetlov/XamarinFormsAndroidBottomMenu/HEAD/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Icon-60@2x.png
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Icon-60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smetlov/XamarinFormsAndroidBottomMenu/HEAD/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Icon-60@3x.png
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Icon-76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smetlov/XamarinFormsAndroidBottomMenu/HEAD/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Icon-76@2x.png
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Icon-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smetlov/XamarinFormsAndroidBottomMenu/HEAD/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Icon-Small.png
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Icon-Small-40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smetlov/XamarinFormsAndroidBottomMenu/HEAD/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Icon-Small-40.png
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Icon-Small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smetlov/XamarinFormsAndroidBottomMenu/HEAD/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Icon-Small@2x.png
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Icon-Small@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smetlov/XamarinFormsAndroidBottomMenu/HEAD/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Icon-Small@3x.png
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.iOS/Resources/ic_about@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smetlov/XamarinFormsAndroidBottomMenu/HEAD/CustomBottomMenu/CustomBottomMenu.iOS/Resources/ic_about@2x.png
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.iOS/Resources/ic_contact@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smetlov/XamarinFormsAndroidBottomMenu/HEAD/CustomBottomMenu/CustomBottomMenu.iOS/Resources/ic_contact@2x.png
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.Droid/Resources/drawable/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smetlov/XamarinFormsAndroidBottomMenu/HEAD/CustomBottomMenu/CustomBottomMenu.Droid/Resources/drawable/icon.png
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Default-568h@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smetlov/XamarinFormsAndroidBottomMenu/HEAD/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Default-568h@2x.png
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Default-Portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smetlov/XamarinFormsAndroidBottomMenu/HEAD/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Default-Portrait.png
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Icon-Small-40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smetlov/XamarinFormsAndroidBottomMenu/HEAD/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Icon-Small-40@2x.png
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Icon-Small-40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smetlov/XamarinFormsAndroidBottomMenu/HEAD/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Icon-Small-40@3x.png
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.iOS/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.Droid/Resources/drawable-hdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smetlov/XamarinFormsAndroidBottomMenu/HEAD/CustomBottomMenu/CustomBottomMenu.Droid/Resources/drawable-hdpi/icon.png
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Default-Portrait@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smetlov/XamarinFormsAndroidBottomMenu/HEAD/CustomBottomMenu/CustomBottomMenu.iOS/Resources/Default-Portrait@2x.png
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.Droid/Resources/drawable-xhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smetlov/XamarinFormsAndroidBottomMenu/HEAD/CustomBottomMenu/CustomBottomMenu.Droid/Resources/drawable-xhdpi/icon.png
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.Droid/Resources/drawable-xxhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smetlov/XamarinFormsAndroidBottomMenu/HEAD/CustomBottomMenu/CustomBottomMenu.Droid/Resources/drawable-xxhdpi/icon.png
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.Droid/Resources/drawable-xxhdpi/ic_about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smetlov/XamarinFormsAndroidBottomMenu/HEAD/CustomBottomMenu/CustomBottomMenu.Droid/Resources/drawable-xxhdpi/ic_about.png
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.Droid/Resources/drawable-xxhdpi/ic_contact.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smetlov/XamarinFormsAndroidBottomMenu/HEAD/CustomBottomMenu/CustomBottomMenu.Droid/Resources/drawable-xxhdpi/ic_contact.png
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.iOS/Entitlements.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu/Pages/AboutPage.xaml.cs:
--------------------------------------------------------------------------------
1 | namespace CustomBottomMenu.Pages
2 | {
3 | public partial class AboutPage
4 | {
5 | public AboutPage()
6 | {
7 | InitializeComponent();
8 | }
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu/Pages/ContactsPage.xaml.cs:
--------------------------------------------------------------------------------
1 | namespace CustomBottomMenu.Pages
2 | {
3 | public partial class ContactsPage
4 | {
5 | public ContactsPage()
6 | {
7 | InitializeComponent();
8 | }
9 | }
10 | }
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.Droid/Properties/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.Droid/Resources/values/Colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #6281AB
4 | #6281AB
5 | #FFC107
6 | #FFFFFF
7 | #6281AB
8 |
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu/Pages/BaseContentPage.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 |
3 | namespace CustomBottomMenu.Pages
4 | {
5 | public class BaseContentPage : ContentPage
6 | {
7 | public void SendAppearing()
8 | {
9 | OnAppearing();
10 | }
11 |
12 | public void SendDisappearing()
13 | {
14 | OnDisappearing();
15 | }
16 | }
17 | }
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu/Pages/MainPage.xaml.cs:
--------------------------------------------------------------------------------
1 | namespace CustomBottomMenu.Pages
2 | {
3 | public partial class MainPage
4 | {
5 | public MainPage()
6 | {
7 | InitializeComponent();
8 | }
9 |
10 | protected override void OnCurrentPageChanged()
11 | {
12 | base.OnCurrentPageChanged();
13 |
14 | Title = CurrentPage?.Title;
15 | }
16 | }
17 | }
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu/Pages/MainPage.xaml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.Droid/Resources/values/Style.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
11 |
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu/Pages/ContactsPage.xaml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu/Pages/AboutPage.xaml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu/App.cs:
--------------------------------------------------------------------------------
1 | using CustomBottomMenu.Pages;
2 | using Xamarin.Forms;
3 |
4 | namespace CustomBottomMenu
5 | {
6 | public class App : Application
7 | {
8 | public App()
9 | {
10 | MainPage = new NavigationPage(new MainPage());
11 | }
12 |
13 | protected override void OnStart()
14 | {
15 | }
16 |
17 | protected override void OnSleep()
18 | {
19 | }
20 |
21 | protected override void OnResume()
22 | {
23 | }
24 | }
25 | }
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.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 CustomBottomMenu.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 |
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.Droid/Resources/layout/toolbar.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.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 you 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 |
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.Droid/MainActivity.cs:
--------------------------------------------------------------------------------
1 | using Android.App;
2 | using Android.Content.PM;
3 | using Android.OS;
4 | using Xamarin.Forms.Platform.Android;
5 |
6 | namespace CustomBottomMenu.Droid
7 | {
8 | [Activity(Label = "CustomBottomMenu", Icon = "@drawable/icon", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation,
9 | Theme = "@style/AppTheme")]
10 | public class MainActivity : FormsAppCompatActivity
11 | {
12 | protected override void OnCreate(Bundle bundle)
13 | {
14 | ToolbarResource = Resource.Layout.toolbar;
15 |
16 | base.OnCreate(bundle);
17 |
18 | Xamarin.Forms.Forms.Init(this, bundle);
19 | LoadApplication(new App());
20 | }
21 | }
22 | }
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.Droid/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Resources;
2 | using System.Reflection;
3 | using System.Runtime.CompilerServices;
4 | using System.Runtime.InteropServices;
5 |
6 | // General Information about an assembly is controlled through the following
7 | // set of attributes. Change these attribute values to modify the information
8 | // associated with an assembly.
9 | [assembly: AssemblyTitle("CustomBottomMenu")]
10 | [assembly: AssemblyDescription("")]
11 | [assembly: AssemblyConfiguration("")]
12 | [assembly: AssemblyCompany("")]
13 | [assembly: AssemblyProduct("CustomBottomMenu")]
14 | [assembly: AssemblyCopyright("Copyright © 2014")]
15 | [assembly: AssemblyTrademark("")]
16 | [assembly: AssemblyCulture("")]
17 | [assembly: NeutralResourcesLanguage("en")]
18 |
19 | // Version information for an assembly consists of the following four values:
20 | //
21 | // Major Version
22 | // Minor Version
23 | // Build Number
24 | // Revision
25 | //
26 | // You can specify all the values or you can default the Build and Revision Numbers
27 | // by using the '*' as shown below:
28 | // [assembly: AssemblyVersion("1.0.*")]
29 | [assembly: AssemblyVersion("1.0.0.0")]
30 | [assembly: AssemblyFileVersion("1.0.0.0")]
31 |
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.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 CustomBottomMenu.iOS
9 | {
10 | // The UIApplicationDelegate for the application. This class is responsible for launching the
11 | // User Interface of the application, as well as listening (and optionally responding) to
12 | // application events from iOS.
13 | [Register("AppDelegate")]
14 | public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate
15 | {
16 | //
17 | // This method is invoked when the application has loaded and is ready to run. In this
18 | // method you should instantiate the window, load the UI into it and then make the window
19 | // visible.
20 | //
21 | // You have 17 seconds to return from this method, or iOS will terminate your application.
22 | //
23 | public override bool FinishedLaunching(UIApplication app, NSDictionary options)
24 | {
25 | global::Xamarin.Forms.Forms.Init();
26 | LoadApplication(new App());
27 |
28 | return base.FinishedLaunching(app, options);
29 | }
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.Droid/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 | using Android.App;
5 |
6 | // General Information about an assembly is controlled through the following
7 | // set of attributes. Change these attribute values to modify the information
8 | // associated with an assembly.
9 | [assembly: AssemblyTitle("CustomBottomMenu.Droid")]
10 | [assembly: AssemblyDescription("")]
11 | [assembly: AssemblyConfiguration("")]
12 | [assembly: AssemblyCompany("")]
13 | [assembly: AssemblyProduct("CustomBottomMenu.Droid")]
14 | [assembly: AssemblyCopyright("Copyright © 2014")]
15 | [assembly: AssemblyTrademark("")]
16 | [assembly: AssemblyCulture("")]
17 | [assembly: ComVisible(false)]
18 |
19 | // Version information for an assembly consists of the following four values:
20 | //
21 | // Major Version
22 | // Minor Version
23 | // Build Number
24 | // Revision
25 | //
26 | // You can specify all the values or you can default the Build and Revision Numbers
27 | // by using the '*' as shown below:
28 | // [assembly: AssemblyVersion("1.0.*")]
29 | [assembly: AssemblyVersion("1.0.0.0")]
30 | [assembly: AssemblyFileVersion("1.0.0.0")]
31 |
32 | // Add some common permissions, these can be removed if not needed
33 | [assembly: UsesPermission(Android.Manifest.Permission.Internet)]
34 | [assembly: UsesPermission(Android.Manifest.Permission.WriteExternalStorage)]
35 |
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.iOS/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 |
5 | // General Information about an assembly is controlled through the following
6 | // set of attributes. Change these attribute values to modify the information
7 | // associated with an assembly.
8 | [assembly: AssemblyTitle("CustomBottomMenu.iOS")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("")]
12 | [assembly: AssemblyProduct("CustomBottomMenu.iOS")]
13 | [assembly: AssemblyCopyright("Copyright © 2014")]
14 | [assembly: AssemblyTrademark("")]
15 | [assembly: AssemblyCulture("")]
16 |
17 | // Setting ComVisible to false makes the types in this assembly not visible
18 | // to COM components. If you need to access a type in this assembly from
19 | // COM, set the ComVisible attribute to true on that type.
20 | [assembly: ComVisible(false)]
21 |
22 | // The following GUID is for the ID of the typelib if this project is exposed to COM
23 | [assembly: Guid("72bdc44f-c588-44f3-b6df-9aace7daafdd")]
24 |
25 | // Version information for an assembly consists of the following four values:
26 | //
27 | // Major Version
28 | // Minor Version
29 | // Build Number
30 | // Revision
31 | //
32 | // You can specify all the values or you can default the Build and Revision Numbers
33 | // by using the '*' as shown below:
34 | // [assembly: AssemblyVersion("1.0.*")]
35 | [assembly: AssemblyVersion("1.0.0.0")]
36 | [assembly: AssemblyFileVersion("1.0.0.0")]
37 |
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.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.xml),
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-hdpi/
12 | icon.png
13 |
14 | drawable-ldpi/
15 | icon.png
16 |
17 | drawable-mdpi/
18 | icon.png
19 |
20 | layout/
21 | main.xml
22 |
23 | values/
24 | strings.xml
25 |
26 | In order to get the build system to recognize Android resources, set the build action to
27 | "AndroidResource". The native Android APIs do not operate directly with filenames, but
28 | instead operate on resource IDs. When you compile an Android application that uses resources,
29 | the build system will package the resources for distribution and generate a class called
30 | "Resource" that contains the tokens for each one of the resources included. For example,
31 | for the above Resources layout, this is what the Resource class would expose:
32 |
33 | public class Resource {
34 | public class drawable {
35 | public const int icon = 0x123;
36 | }
37 |
38 | public class layout {
39 | public const int main = 0x456;
40 | }
41 |
42 | public class strings {
43 | public const int first_string = 0xabc;
44 | public const int second_string = 0xbcd;
45 | }
46 | }
47 |
48 | You would then use R.drawable.icon to reference the drawable/icon.png file, or Resource.layout.main
49 | to reference the layout/main.xml file, or Resource.strings.first_string to reference the first
50 | string in the dictionary file values/strings.xml.
51 |
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.iOS/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | UIDeviceFamily
6 |
7 | 1
8 | 2
9 |
10 | UISupportedInterfaceOrientations
11 |
12 | UIInterfaceOrientationPortrait
13 | UIInterfaceOrientationLandscapeLeft
14 | UIInterfaceOrientationLandscapeRight
15 |
16 | UISupportedInterfaceOrientations~ipad
17 |
18 | UIInterfaceOrientationPortrait
19 | UIInterfaceOrientationPortraitUpsideDown
20 | UIInterfaceOrientationLandscapeLeft
21 | UIInterfaceOrientationLandscapeRight
22 |
23 | MinimumOSVersion
24 | 6.0
25 | CFBundleDisplayName
26 | CustomBottomMenu
27 | CFBundleIdentifier
28 | com.yourcompany.CustomBottomMenu
29 | CFBundleVersion
30 | 1.0
31 | CFBundleIconFiles
32 |
33 | Icon-60@2x
34 | Icon-60@3x
35 | Icon-76
36 | Icon-76@2x
37 | Default
38 | Default@2x
39 | Default-568h@2x
40 | Default-Portrait
41 | Default-Portrait@2x
42 | Icon-Small-40
43 | Icon-Small-40@2x
44 | Icon-Small-40@3x
45 | Icon-Small
46 | Icon-Small@2x
47 | Icon-Small@3x
48 |
49 | UILaunchStoryboardName
50 | LaunchScreen
51 |
52 |
53 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | ###############################################################################
2 | # Set default behavior to automatically normalize line endings.
3 | ###############################################################################
4 | * text=auto
5 |
6 | ###############################################################################
7 | # Set default behavior for command prompt diff.
8 | #
9 | # This is need for earlier builds of msysgit that does not have it on by
10 | # default for csharp files.
11 | # Note: This is only used by command line
12 | ###############################################################################
13 | #*.cs diff=csharp
14 |
15 | ###############################################################################
16 | # Set the merge driver for project and solution files
17 | #
18 | # Merging from the command prompt will add diff markers to the files if there
19 | # are conflicts (Merging from VS is not affected by the settings below, in VS
20 | # the diff markers are never inserted). Diff markers may cause the following
21 | # file extensions to fail to load in VS. An alternative would be to treat
22 | # these files as binary and thus will always conflict and require user
23 | # intervention with every merge. To do so, just uncomment the entries below
24 | ###############################################################################
25 | #*.sln merge=binary
26 | #*.csproj merge=binary
27 | #*.vbproj merge=binary
28 | #*.vcxproj merge=binary
29 | #*.vcproj merge=binary
30 | #*.dbproj merge=binary
31 | #*.fsproj merge=binary
32 | #*.lsproj merge=binary
33 | #*.wixproj merge=binary
34 | #*.modelproj merge=binary
35 | #*.sqlproj merge=binary
36 | #*.wwaproj merge=binary
37 |
38 | ###############################################################################
39 | # behavior for image files
40 | #
41 | # image files are treated as binary by default.
42 | ###############################################################################
43 | #*.jpg binary
44 | #*.png binary
45 | #*.gif binary
46 |
47 | ###############################################################################
48 | # diff behavior for common document formats
49 | #
50 | # Convert binary document formats to text before diffing them. This feature
51 | # is only available from the command line. Turn it on by uncommenting the
52 | # entries below.
53 | ###############################################################################
54 | #*.doc diff=astextplain
55 | #*.DOC diff=astextplain
56 | #*.docx diff=astextplain
57 | #*.DOCX diff=astextplain
58 | #*.dot diff=astextplain
59 | #*.DOT diff=astextplain
60 | #*.pdf diff=astextplain
61 | #*.PDF diff=astextplain
62 | #*.rtf diff=astextplain
63 | #*.RTF diff=astextplain
64 |
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.iOS/Resources/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 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | ## Ignore Visual Studio temporary files, build results, and
2 | ## files generated by popular Visual Studio add-ons.
3 |
4 | # User-specific files
5 | *.suo
6 | *.user
7 | *.userosscache
8 | *.sln.docstates
9 |
10 | # User-specific files (MonoDevelop/Xamarin Studio)
11 | *.userprefs
12 |
13 | # Build results
14 | [Dd]ebug/
15 | [Dd]ebugPublic/
16 | [Rr]elease/
17 | [Rr]eleases/
18 | x64/
19 | x86/
20 | bld/
21 | [Bb]in/
22 | [Oo]bj/
23 | [Ll]og/
24 |
25 | # Visual Studio 2015 cache/options directory
26 | .vs/
27 | # Uncomment if you have tasks that create the project's static files in wwwroot
28 | #wwwroot/
29 |
30 | # MSTest test Results
31 | [Tt]est[Rr]esult*/
32 | [Bb]uild[Ll]og.*
33 |
34 | # NUNIT
35 | *.VisualState.xml
36 | TestResult.xml
37 |
38 | # Build Results of an ATL Project
39 | [Dd]ebugPS/
40 | [Rr]eleasePS/
41 | dlldata.c
42 |
43 | # DNX
44 | project.lock.json
45 | artifacts/
46 |
47 | *_i.c
48 | *_p.c
49 | *_i.h
50 | *.ilk
51 | *.meta
52 | *.obj
53 | *.pch
54 | *.pdb
55 | *.pgc
56 | *.pgd
57 | *.rsp
58 | *.sbr
59 | *.tlb
60 | *.tli
61 | *.tlh
62 | *.tmp
63 | *.tmp_proj
64 | *.log
65 | *.vspscc
66 | *.vssscc
67 | .builds
68 | *.pidb
69 | *.svclog
70 | *.scc
71 |
72 | # Chutzpah Test files
73 | _Chutzpah*
74 |
75 | # Visual C++ cache files
76 | ipch/
77 | *.aps
78 | *.ncb
79 | *.opendb
80 | *.opensdf
81 | *.sdf
82 | *.cachefile
83 | *.VC.db
84 | *.VC.VC.opendb
85 |
86 | # Visual Studio profiler
87 | *.psess
88 | *.vsp
89 | *.vspx
90 | *.sap
91 |
92 | # TFS 2012 Local Workspace
93 | $tf/
94 |
95 | # Guidance Automation Toolkit
96 | *.gpState
97 |
98 | # ReSharper is a .NET coding add-in
99 | _ReSharper*/
100 | *.[Rr]e[Ss]harper
101 | *.DotSettings.user
102 |
103 | # JustCode is a .NET coding add-in
104 | .JustCode
105 |
106 | # TeamCity is a build add-in
107 | _TeamCity*
108 |
109 | # DotCover is a Code Coverage Tool
110 | *.dotCover
111 |
112 | # NCrunch
113 | _NCrunch_*
114 | .*crunch*.local.xml
115 | nCrunchTemp_*
116 |
117 | # MightyMoose
118 | *.mm.*
119 | AutoTest.Net/
120 |
121 | # Web workbench (sass)
122 | .sass-cache/
123 |
124 | # Installshield output folder
125 | [Ee]xpress/
126 |
127 | # DocProject is a documentation generator add-in
128 | DocProject/buildhelp/
129 | DocProject/Help/*.HxT
130 | DocProject/Help/*.HxC
131 | DocProject/Help/*.hhc
132 | DocProject/Help/*.hhk
133 | DocProject/Help/*.hhp
134 | DocProject/Help/Html2
135 | DocProject/Help/html
136 |
137 | # Click-Once directory
138 | publish/
139 |
140 | # Publish Web Output
141 | *.[Pp]ublish.xml
142 | *.azurePubxml
143 | # TODO: Comment the next line if you want to checkin your web deploy settings
144 | # but database connection strings (with potential passwords) will be unencrypted
145 | *.pubxml
146 | *.publishproj
147 |
148 | # Microsoft Azure Web App publish settings. Comment the next line if you want to
149 | # checkin your Azure Web App publish settings, but sensitive information contained
150 | # in these scripts will be unencrypted
151 | PublishScripts/
152 |
153 | # NuGet Packages
154 | *.nupkg
155 | # The packages folder can be ignored because of Package Restore
156 | **/packages/*
157 | # except build/, which is used as an MSBuild target.
158 | !**/packages/build/
159 | # Uncomment if necessary however generally it will be regenerated when needed
160 | #!**/packages/repositories.config
161 | # NuGet v3's project.json files produces more ignoreable files
162 | *.nuget.props
163 | *.nuget.targets
164 |
165 | # Microsoft Azure Build Output
166 | csx/
167 | *.build.csdef
168 |
169 | # Microsoft Azure Emulator
170 | ecf/
171 | rcf/
172 |
173 | # Windows Store app package directories and files
174 | AppPackages/
175 | BundleArtifacts/
176 | Package.StoreAssociation.xml
177 | _pkginfo.txt
178 |
179 | # Visual Studio cache files
180 | # files ending in .cache can be ignored
181 | *.[Cc]ache
182 | # but keep track of directories ending in .cache
183 | !*.[Cc]ache/
184 |
185 | # Others
186 | ClientBin/
187 | ~$*
188 | *~
189 | *.dbmdl
190 | *.dbproj.schemaview
191 | *.pfx
192 | *.publishsettings
193 | node_modules/
194 | orleans.codegen.cs
195 |
196 | # Since there are multiple workflows, uncomment next line to ignore bower_components
197 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
198 | #bower_components/
199 |
200 | # RIA/Silverlight projects
201 | Generated_Code/
202 |
203 | # Backup & report files from converting an old project file
204 | # to a newer Visual Studio version. Backup files are not needed,
205 | # because we have git ;-)
206 | _UpgradeReport_Files/
207 | Backup*/
208 | UpgradeLog*.XML
209 | UpgradeLog*.htm
210 |
211 | # SQL Server files
212 | *.mdf
213 | *.ldf
214 |
215 | # Business Intelligence projects
216 | *.rdl.data
217 | *.bim.layout
218 | *.bim_*.settings
219 |
220 | # Microsoft Fakes
221 | FakesAssemblies/
222 |
223 | # GhostDoc plugin setting file
224 | *.GhostDoc.xml
225 |
226 | # Node.js Tools for Visual Studio
227 | .ntvs_analysis.dat
228 |
229 | # Visual Studio 6 build log
230 | *.plg
231 |
232 | # Visual Studio 6 workspace options file
233 | *.opt
234 |
235 | # Visual Studio LightSwitch build output
236 | **/*.HTMLClient/GeneratedArtifacts
237 | **/*.DesktopClient/GeneratedArtifacts
238 | **/*.DesktopClient/ModelManifest.xml
239 | **/*.Server/GeneratedArtifacts
240 | **/*.Server/ModelManifest.xml
241 | _Pvt_Extensions
242 |
243 | # Paket dependency manager
244 | .paket/paket.exe
245 | paket-files/
246 |
247 | # FAKE - F# Make
248 | .fake/
249 |
250 | # JetBrains Rider
251 | .idea/
252 | *.sln.iml
253 |
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu/CustomBottomMenu.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 10.0
6 | Debug
7 | AnyCPU
8 | {12DD3465-FDA3-4742-A784-0939F7254BF9}
9 | Library
10 | Properties
11 | CustomBottomMenu
12 | CustomBottomMenu
13 | v4.5
14 | Profile111
15 | 512
16 | {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
17 |
18 |
19 |
20 |
21 | true
22 | full
23 | false
24 | bin\Debug\
25 | DEBUG;TRACE
26 | prompt
27 | 4
28 |
29 |
30 | pdbonly
31 | true
32 | bin\Release\
33 | TRACE
34 | prompt
35 | 4
36 |
37 |
38 |
39 | AboutPage.xaml
40 |
41 |
42 |
43 |
44 | ContactsPage.xaml
45 |
46 |
47 | MainPage.xaml
48 |
49 |
50 |
51 |
52 |
53 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.Core.dll
54 | True
55 |
56 |
57 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.Platform.dll
58 | True
59 |
60 |
61 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.Xaml.dll
62 | True
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 | MSBuild:UpdateDesignTimeXaml
72 | Designer
73 |
74 |
75 |
76 |
77 | MSBuild:UpdateDesignTimeXaml
78 | Designer
79 |
80 |
81 |
82 |
83 | MSBuild:UpdateDesignTimeXaml
84 | Designer
85 |
86 |
87 |
88 |
89 |
90 |
91 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.
92 |
93 |
94 |
95 |
102 |
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.Droid/Renderers/MainPageRenderer.cs:
--------------------------------------------------------------------------------
1 | using System.Collections.Generic;
2 | using System.Linq;
3 | using Android.Views;
4 | using BottomNavigationBar;
5 | using BottomNavigationBar.Listeners;
6 | using CustomBottomMenu.Droid.Renderers;
7 | using CustomBottomMenu.Pages;
8 | using Xamarin.Forms;
9 | using Xamarin.Forms.Platform.Android;
10 | using Color = Android.Graphics.Color;
11 |
12 | [assembly: ExportRenderer(typeof(MainPage), typeof(MainPageRenderer))]
13 |
14 | namespace CustomBottomMenu.Droid.Renderers
15 | {
16 | internal class MainPageRenderer : VisualElementRenderer, IOnTabClickListener
17 | {
18 | private BottomBar _bottomBar;
19 |
20 | private Page _currentPage;
21 |
22 | private int _lastSelectedTabIndex = -1;
23 |
24 | public MainPageRenderer()
25 | {
26 | // Required to say packager to not to add child pages automatically
27 | AutoPackage = false;
28 | }
29 |
30 | public void OnTabSelected(int position)
31 | {
32 | LoadPageContent(position);
33 | }
34 |
35 | public void OnTabReSelected(int position)
36 | {
37 | }
38 |
39 | protected override void OnElementChanged(ElementChangedEventArgs e)
40 | {
41 | base.OnElementChanged(e);
42 |
43 | if (e.OldElement != null)
44 | {
45 | ClearElement(e.OldElement);
46 | }
47 |
48 | if (e.NewElement != null)
49 | {
50 | InitializeElement(e.NewElement);
51 | }
52 | }
53 |
54 | protected override void Dispose(bool disposing)
55 | {
56 | if (disposing)
57 | {
58 | ClearElement(Element);
59 | }
60 |
61 | base.Dispose(disposing);
62 | }
63 |
64 | protected override void OnLayout(bool changed, int l, int t, int r, int b)
65 | {
66 | if (Element == null)
67 | {
68 | return;
69 | }
70 |
71 | int width = r - l;
72 | int height = b - t;
73 |
74 | _bottomBar.Measure(
75 | MeasureSpec.MakeMeasureSpec(width, MeasureSpecMode.Exactly),
76 | MeasureSpec.MakeMeasureSpec(height, MeasureSpecMode.AtMost));
77 |
78 | // We need to call measure one more time with measured sizes
79 | // in order to layout the bottom bar properly
80 | _bottomBar.Measure(
81 | MeasureSpec.MakeMeasureSpec(width, MeasureSpecMode.Exactly),
82 | MeasureSpec.MakeMeasureSpec(_bottomBar.ItemContainer.MeasuredHeight, MeasureSpecMode.Exactly));
83 |
84 | int barHeight = _bottomBar.ItemContainer.MeasuredHeight;
85 |
86 | _bottomBar.Layout(0, b - barHeight, width, b);
87 |
88 | float density = Android.Content.Res.Resources.System.DisplayMetrics.Density;
89 |
90 | double contentWidthConstraint = width / density;
91 | double contentHeightConstraint = (height - barHeight) / density;
92 |
93 | if (_currentPage != null)
94 | {
95 | var renderer = Platform.GetRenderer(_currentPage);
96 |
97 | renderer.Element.Measure(contentWidthConstraint, contentHeightConstraint);
98 | renderer.Element.Layout(new Rectangle(0, 0, contentWidthConstraint, contentHeightConstraint));
99 |
100 | renderer.UpdateLayout();
101 | }
102 | }
103 |
104 | private void InitializeElement(MainPage element)
105 | {
106 | PopulateChildren(element);
107 | }
108 |
109 | private void PopulateChildren(MainPage element)
110 | {
111 | // Unfortunately bottom bar can not be reused so we have to
112 | // remove it and create the new instance
113 | _bottomBar?.RemoveFromParent();
114 |
115 | _bottomBar = CreateBottomBar(element.Children);
116 | AddView(_bottomBar);
117 |
118 | LoadPageContent(0);
119 | }
120 |
121 | private void ClearElement(MainPage element)
122 | {
123 | if (_currentPage != null)
124 | {
125 | IVisualElementRenderer renderer = Platform.GetRenderer(_currentPage);
126 |
127 | if (renderer != null)
128 | {
129 | renderer.ViewGroup.RemoveFromParent();
130 | renderer.ViewGroup.Dispose();
131 | renderer.Dispose();
132 |
133 | _currentPage = null;
134 | }
135 |
136 | if (_bottomBar != null)
137 | {
138 | _bottomBar.RemoveFromParent();
139 | _bottomBar.Dispose();
140 | _bottomBar = null;
141 | }
142 | }
143 | }
144 |
145 | private BottomBar CreateBottomBar(IEnumerable pageIntents)
146 | {
147 | var bar = new BottomBar(Context);
148 |
149 | // TODO: Configure the bottom bar here according to your needs
150 |
151 | bar.SetOnTabClickListener(this);
152 | bar.UseFixedMode();
153 |
154 | PopulateBottomBarItems(bar, pageIntents);
155 |
156 | bar.ItemContainer.SetBackgroundColor(Color.LightGray);
157 |
158 | return bar;
159 | }
160 |
161 | private void PopulateBottomBarItems(BottomBar bar, IEnumerable pages)
162 | {
163 | var barItems = pages.Select(x => new BottomBarTab(Context.Resources.GetDrawable(x.Icon), x.Title));
164 |
165 | bar.SetItems(barItems.ToArray());
166 | }
167 |
168 | private void LoadPageContent(int position)
169 | {
170 | ShowPage(position);
171 | }
172 |
173 | private void ShowPage(int position)
174 | {
175 | if (position != _lastSelectedTabIndex)
176 | {
177 | Element.CurrentPage = Element.Children[position];
178 |
179 | if (Element.CurrentPage != null)
180 | {
181 | LoadPageContent(Element.CurrentPage);
182 | }
183 | }
184 |
185 | _lastSelectedTabIndex = position;
186 | }
187 |
188 | private void LoadPageContent(Page page)
189 | {
190 | UnloadCurrentPage();
191 |
192 | _currentPage = page;
193 |
194 | LoadCurrentPage();
195 |
196 | Element.CurrentPage = _currentPage;
197 | }
198 |
199 | private void LoadCurrentPage()
200 | {
201 | var renderer = Platform.GetRenderer(_currentPage);
202 |
203 | if (renderer == null)
204 | {
205 | renderer = Platform.CreateRenderer(_currentPage);
206 | Platform.SetRenderer(_currentPage, renderer);
207 |
208 | AddView(renderer.ViewGroup);
209 | }
210 | else
211 | {
212 | // As we show and hide pages manually OnAppearing and OnDisappearing
213 | // workflow methods won't be called by the framework. Calling them manually...
214 | var basePage = _currentPage as BaseContentPage;
215 | basePage?.SendAppearing();
216 | }
217 |
218 | renderer.ViewGroup.Visibility = ViewStates.Visible;
219 | }
220 |
221 | private void UnloadCurrentPage()
222 | {
223 | if (_currentPage != null)
224 | {
225 | var basePage = _currentPage as BaseContentPage;
226 | basePage?.SendDisappearing();
227 |
228 | var renderer = Platform.GetRenderer(_currentPage);
229 |
230 | if (renderer != null)
231 | {
232 | renderer.ViewGroup.Visibility = ViewStates.Invisible;
233 | }
234 | }
235 | }
236 | }
237 | }
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.iOS/CustomBottomMenu.iOS.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Debug
5 | iPhoneSimulator
6 | 8.0.30703
7 | 2.0
8 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}
9 | {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
10 | Exe
11 | CustomBottomMenu.iOS
12 | Resources
13 | CustomBottomMenuiOS
14 |
15 |
16 |
17 |
18 | true
19 | full
20 | false
21 | bin\iPhoneSimulator\Debug
22 | DEBUG
23 | prompt
24 | 4
25 | false
26 | i386, x86_64
27 | None
28 | true
29 |
30 |
31 | none
32 | true
33 | bin\iPhoneSimulator\Release
34 | prompt
35 | 4
36 | None
37 | i386, x86_64
38 | false
39 |
40 |
41 | true
42 | full
43 | false
44 | bin\iPhone\Debug
45 | DEBUG
46 | prompt
47 | 4
48 | false
49 | ARMv7, ARM64
50 | iPhone Developer
51 | true
52 | Entitlements.plist
53 |
54 |
55 | none
56 | true
57 | bin\iPhone\Release
58 | prompt
59 | 4
60 | ARMv7, ARM64
61 | false
62 | iPhone Developer
63 | Entitlements.plist
64 |
65 |
66 | none
67 | True
68 | bin\iPhone\Ad-Hoc
69 | prompt
70 | 4
71 | False
72 | ARMv7, ARM64
73 | True
74 | Automatic:AdHoc
75 | iPhone Distribution
76 | Entitlements.plist
77 |
78 |
79 | none
80 | True
81 | bin\iPhone\AppStore
82 | prompt
83 | 4
84 | False
85 | ARMv7, ARM64
86 | Automatic:AppStore
87 | iPhone Distribution
88 | Entitlements.plist
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 | CustomBottomMenu
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\Xamarin.iOS10\Xamarin.Forms.Core.dll
129 | True
130 |
131 |
132 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\Xamarin.iOS10\Xamarin.Forms.Platform.dll
133 | True
134 |
135 |
136 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\Xamarin.iOS10\Xamarin.Forms.Platform.iOS.dll
137 | True
138 |
139 |
140 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\Xamarin.iOS10\Xamarin.Forms.Xaml.dll
141 | True
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.
156 |
157 |
158 |
159 |
--------------------------------------------------------------------------------
/CustomBottomMenu/CustomBottomMenu.Droid/CustomBottomMenu.Droid.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Debug
5 | AnyCPU
6 | 8.0.30703
7 | 2.0
8 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}
9 | {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
10 | Library
11 | Properties
12 | CustomBottomMenu.Droid
13 | CustomBottomMenu.Droid
14 | 512
15 | true
16 | Resources\Resource.Designer.cs
17 | Off
18 | Properties\AndroidManifest.xml
19 | true
20 | v6.0
21 | armeabi,armeabi-v7a,x86
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 | true
31 | full
32 | false
33 | bin\Debug\
34 | DEBUG;TRACE
35 | prompt
36 | 4
37 | True
38 | None
39 |
40 |
41 | pdbonly
42 | true
43 | bin\Release\
44 | TRACE
45 | prompt
46 | 4
47 | False
48 | SdkOnly
49 |
50 |
51 |
52 | ..\..\packages\BottomNavigationBar.1.1.1\lib\MonoAndroid403\BottomNavigationBar.dll
53 | True
54 |
55 |
56 | ..\..\packages\Xamarin.Forms.2.2.0.31\lib\MonoAndroid10\FormsViewGroup.dll
57 | True
58 |
59 |
60 |
61 |
62 | ..\..\packages\Newtonsoft.Json.8.0.3\lib\portable-net40+sl5+wp80+win8+wpa81\Newtonsoft.Json.dll
63 | True
64 |
65 |
66 |
67 |
68 |
69 |
70 | ..\..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.Animated.Vector.Drawable.dll
71 | True
72 |
73 |
74 | ..\..\packages\Xamarin.Android.Support.Design.23.3.0\lib\MonoAndroid43\Xamarin.Android.Support.Design.dll
75 | True
76 |
77 |
78 | ..\..\packages\Xamarin.Android.Support.v4.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v4.dll
79 | True
80 |
81 |
82 | ..\..\packages\Xamarin.Android.Support.v7.AppCompat.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.AppCompat.dll
83 | True
84 |
85 |
86 | ..\..\packages\Xamarin.Android.Support.v7.CardView.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.CardView.dll
87 | True
88 |
89 |
90 | ..\..\packages\Xamarin.Android.Support.v7.MediaRouter.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.MediaRouter.dll
91 | True
92 |
93 |
94 | ..\..\packages\Xamarin.Android.Support.v7.RecyclerView.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.RecyclerView.dll
95 | True
96 |
97 |
98 | ..\..\packages\Xamarin.Android.Support.Vector.Drawable.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.Vector.Drawable.dll
99 | True
100 |
101 |
102 | ..\..\packages\Xamarin.Forms.2.2.0.31\lib\MonoAndroid10\Xamarin.Forms.Core.dll
103 | True
104 |
105 |
106 | ..\..\packages\Xamarin.Forms.2.2.0.31\lib\MonoAndroid10\Xamarin.Forms.Platform.dll
107 | True
108 |
109 |
110 | ..\..\packages\Xamarin.Forms.2.2.0.31\lib\MonoAndroid10\Xamarin.Forms.Platform.Android.dll
111 | True
112 |
113 |
114 | ..\..\packages\Xamarin.Forms.2.2.0.31\lib\MonoAndroid10\Xamarin.Forms.Xaml.dll
115 | True
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 | CustomBottomMenu
141 |
142 |
143 |
144 |
145 | Designer
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.
165 |
166 |
167 |
168 |
169 |
170 |
177 |
--------------------------------------------------------------------------------
/CustomBottomMenu.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 14
4 | VisualStudioVersion = 14.0.25123.0
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CustomBottomMenu.Droid", "CustomBottomMenu\CustomBottomMenu.Droid\CustomBottomMenu.Droid.csproj", "{7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}"
7 | EndProject
8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CustomBottomMenu.iOS", "CustomBottomMenu\CustomBottomMenu.iOS\CustomBottomMenu.iOS.csproj", "{D23C3D2A-3195-4C41-9F0A-5E96B44DE547}"
9 | EndProject
10 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CustomBottomMenu", "CustomBottomMenu\CustomBottomMenu\CustomBottomMenu.csproj", "{12DD3465-FDA3-4742-A784-0939F7254BF9}"
11 | EndProject
12 | Global
13 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
14 | Ad-Hoc|Any CPU = Ad-Hoc|Any CPU
15 | Ad-Hoc|ARM = Ad-Hoc|ARM
16 | Ad-Hoc|iPhone = Ad-Hoc|iPhone
17 | Ad-Hoc|iPhoneSimulator = Ad-Hoc|iPhoneSimulator
18 | Ad-Hoc|x64 = Ad-Hoc|x64
19 | Ad-Hoc|x86 = Ad-Hoc|x86
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 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
41 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
42 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Ad-Hoc|Any CPU.Deploy.0 = Release|Any CPU
43 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
44 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Ad-Hoc|ARM.Build.0 = Release|Any CPU
45 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Ad-Hoc|ARM.Deploy.0 = Release|Any CPU
46 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
47 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
48 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Ad-Hoc|iPhone.Deploy.0 = Release|Any CPU
49 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
50 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
51 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Release|Any CPU
52 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU
53 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Ad-Hoc|x64.Build.0 = Release|Any CPU
54 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Ad-Hoc|x64.Deploy.0 = Release|Any CPU
55 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
56 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Ad-Hoc|x86.Build.0 = Release|Any CPU
57 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Ad-Hoc|x86.Deploy.0 = Release|Any CPU
58 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
59 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.AppStore|Any CPU.Build.0 = Release|Any CPU
60 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.AppStore|Any CPU.Deploy.0 = Release|Any CPU
61 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.AppStore|ARM.ActiveCfg = Release|Any CPU
62 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.AppStore|ARM.Build.0 = Release|Any CPU
63 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.AppStore|ARM.Deploy.0 = Release|Any CPU
64 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.AppStore|iPhone.ActiveCfg = Release|Any CPU
65 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.AppStore|iPhone.Build.0 = Release|Any CPU
66 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.AppStore|iPhone.Deploy.0 = Release|Any CPU
67 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
68 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
69 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.AppStore|iPhoneSimulator.Deploy.0 = Release|Any CPU
70 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.AppStore|x64.ActiveCfg = Release|Any CPU
71 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.AppStore|x64.Build.0 = Release|Any CPU
72 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.AppStore|x64.Deploy.0 = Release|Any CPU
73 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.AppStore|x86.ActiveCfg = Release|Any CPU
74 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.AppStore|x86.Build.0 = Release|Any CPU
75 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.AppStore|x86.Deploy.0 = Release|Any CPU
76 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
77 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Debug|Any CPU.Build.0 = Debug|Any CPU
78 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
79 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Debug|ARM.ActiveCfg = Debug|Any CPU
80 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Debug|ARM.Build.0 = Debug|Any CPU
81 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Debug|ARM.Deploy.0 = Debug|Any CPU
82 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Debug|iPhone.ActiveCfg = Debug|Any CPU
83 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Debug|iPhone.Build.0 = Debug|Any CPU
84 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Debug|iPhone.Deploy.0 = Debug|Any CPU
85 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
86 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
87 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU
88 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Debug|x64.ActiveCfg = Debug|Any CPU
89 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Debug|x64.Build.0 = Debug|Any CPU
90 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Debug|x64.Deploy.0 = Debug|Any CPU
91 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Debug|x86.ActiveCfg = Debug|Any CPU
92 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Debug|x86.Build.0 = Debug|Any CPU
93 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Debug|x86.Deploy.0 = Debug|Any CPU
94 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Release|Any CPU.ActiveCfg = Release|Any CPU
95 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Release|Any CPU.Build.0 = Release|Any CPU
96 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Release|Any CPU.Deploy.0 = Release|Any CPU
97 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Release|ARM.ActiveCfg = Release|Any CPU
98 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Release|ARM.Build.0 = Release|Any CPU
99 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Release|ARM.Deploy.0 = Release|Any CPU
100 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Release|iPhone.ActiveCfg = Release|Any CPU
101 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Release|iPhone.Build.0 = Release|Any CPU
102 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Release|iPhone.Deploy.0 = Release|Any CPU
103 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
104 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
105 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU
106 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Release|x64.ActiveCfg = Release|Any CPU
107 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Release|x64.Build.0 = Release|Any CPU
108 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Release|x64.Deploy.0 = Release|Any CPU
109 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Release|x86.ActiveCfg = Release|Any CPU
110 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Release|x86.Build.0 = Release|Any CPU
111 | {7CCCFE6E-ED3D-41C2-A10E-B83D8841B617}.Release|x86.Deploy.0 = Release|Any CPU
112 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.Ad-Hoc|Any CPU.ActiveCfg = Ad-Hoc|iPhone
113 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.Ad-Hoc|ARM.ActiveCfg = Ad-Hoc|iPhone
114 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.Ad-Hoc|iPhone.ActiveCfg = Ad-Hoc|iPhone
115 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.Ad-Hoc|iPhone.Build.0 = Ad-Hoc|iPhone
116 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Ad-Hoc|iPhoneSimulator
117 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.Ad-Hoc|iPhoneSimulator.Build.0 = Ad-Hoc|iPhoneSimulator
118 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.Ad-Hoc|x64.ActiveCfg = Ad-Hoc|iPhone
119 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.Ad-Hoc|x86.ActiveCfg = Ad-Hoc|iPhone
120 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.AppStore|Any CPU.ActiveCfg = AppStore|iPhone
121 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.AppStore|ARM.ActiveCfg = AppStore|iPhone
122 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.AppStore|iPhone.ActiveCfg = AppStore|iPhone
123 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.AppStore|iPhone.Build.0 = AppStore|iPhone
124 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.AppStore|iPhoneSimulator.ActiveCfg = AppStore|iPhoneSimulator
125 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.AppStore|iPhoneSimulator.Build.0 = AppStore|iPhoneSimulator
126 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.AppStore|x64.ActiveCfg = AppStore|iPhone
127 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.AppStore|x86.ActiveCfg = AppStore|iPhone
128 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.Debug|Any CPU.ActiveCfg = Debug|iPhone
129 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.Debug|ARM.ActiveCfg = Debug|iPhone
130 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.Debug|iPhone.ActiveCfg = Debug|iPhone
131 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.Debug|iPhone.Build.0 = Debug|iPhone
132 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
133 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
134 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.Debug|x64.ActiveCfg = Debug|iPhone
135 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.Debug|x86.ActiveCfg = Debug|iPhone
136 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.Release|Any CPU.ActiveCfg = Release|iPhone
137 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.Release|ARM.ActiveCfg = Release|iPhone
138 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.Release|iPhone.ActiveCfg = Release|iPhone
139 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.Release|iPhone.Build.0 = Release|iPhone
140 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
141 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
142 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.Release|x64.ActiveCfg = Release|iPhone
143 | {D23C3D2A-3195-4C41-9F0A-5E96B44DE547}.Release|x86.ActiveCfg = Release|iPhone
144 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
145 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
146 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
147 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Ad-Hoc|ARM.Build.0 = Release|Any CPU
148 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
149 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
150 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
151 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
152 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU
153 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Ad-Hoc|x64.Build.0 = Release|Any CPU
154 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
155 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Ad-Hoc|x86.Build.0 = Release|Any CPU
156 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
157 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.AppStore|Any CPU.Build.0 = Release|Any CPU
158 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.AppStore|ARM.ActiveCfg = Release|Any CPU
159 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.AppStore|ARM.Build.0 = Release|Any CPU
160 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.AppStore|iPhone.ActiveCfg = Release|Any CPU
161 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.AppStore|iPhone.Build.0 = Release|Any CPU
162 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
163 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
164 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.AppStore|x64.ActiveCfg = Release|Any CPU
165 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.AppStore|x64.Build.0 = Release|Any CPU
166 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.AppStore|x86.ActiveCfg = Release|Any CPU
167 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.AppStore|x86.Build.0 = Release|Any CPU
168 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
169 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Debug|Any CPU.Build.0 = Debug|Any CPU
170 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Debug|ARM.ActiveCfg = Debug|Any CPU
171 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Debug|ARM.Build.0 = Debug|Any CPU
172 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Debug|iPhone.ActiveCfg = Debug|Any CPU
173 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Debug|iPhone.Build.0 = Debug|Any CPU
174 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
175 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
176 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Debug|x64.ActiveCfg = Debug|Any CPU
177 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Debug|x64.Build.0 = Debug|Any CPU
178 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Debug|x86.ActiveCfg = Debug|Any CPU
179 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Debug|x86.Build.0 = Debug|Any CPU
180 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Release|Any CPU.ActiveCfg = Release|Any CPU
181 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Release|Any CPU.Build.0 = Release|Any CPU
182 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Release|ARM.ActiveCfg = Release|Any CPU
183 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Release|ARM.Build.0 = Release|Any CPU
184 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Release|iPhone.ActiveCfg = Release|Any CPU
185 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Release|iPhone.Build.0 = Release|Any CPU
186 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
187 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
188 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Release|x64.ActiveCfg = Release|Any CPU
189 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Release|x64.Build.0 = Release|Any CPU
190 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Release|x86.ActiveCfg = Release|Any CPU
191 | {12DD3465-FDA3-4742-A784-0939F7254BF9}.Release|x86.Build.0 = Release|Any CPU
192 | EndGlobalSection
193 | GlobalSection(SolutionProperties) = preSolution
194 | HideSolutionNode = FALSE
195 | EndGlobalSection
196 | EndGlobal
197 |
--------------------------------------------------------------------------------