All Projects → amatkivskiy → Materialdrawer Xamarin

amatkivskiy / Materialdrawer Xamarin

Licence: apache-2.0
DEPRECATED!!! Xamarin bindings for https://github.com/mikepenz/MaterialDrawer

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Materialdrawer Xamarin

Aawindow
[Deprecated] · UIWindow subclass to enable behavior like adaptive round-corners & detecting when Control Center is opened.
Stars: ✭ 486 (+2109.09%)
Mutual labels:  deprecated, archived
Ui Fabric Ios
DEPRECATED Please use the new repo
Stars: ✭ 590 (+2581.82%)
Mutual labels:  deprecated, archived
Drupal-Scaffold
DEPRECATED: This project has been replaced by documentation within Confluence regarding best practices for setting up a new Drupal 9 project.
Stars: ✭ 48 (+118.18%)
Mutual labels:  deprecated, archived
steam
DEPRECATED Build, manage and deploy H2O's high-speed machine learning models.
Stars: ✭ 59 (+168.18%)
Mutual labels:  deprecated, archived
Mern Cli
⛔️ DEPRECATED - A cli tool for getting started with MERN
Stars: ✭ 575 (+2513.64%)
Mutual labels:  deprecated, archived
react-native-apple-sign-in
Apple Signin for your React Native applications
Stars: ✭ 16 (-27.27%)
Mutual labels:  deprecated, archived
Pygeoip
DEPRECATED: Pure Python API for Maxmind's binary GeoIP databases
Stars: ✭ 483 (+2095.45%)
Mutual labels:  deprecated, archived
OSM-Completionist
⛔️ DEPRECATED iOS companion app for OpenStreetMap that allows contributors to complete missing information
Stars: ✭ 17 (-22.73%)
Mutual labels:  deprecated, archived
Docker Cleanup
DEPRECATED Automatic Docker image, container and volume cleanup
Stars: ✭ 582 (+2545.45%)
Mutual labels:  deprecated, archived
Sphero.js
🚫 DEPRECATED: The Sphero JavaScript SDK to control Sphero robots.
Stars: ✭ 346 (+1472.73%)
Mutual labels:  deprecated, archived
AASecondaryScreen
[Deprecated] · Approachable implementation of iOS AirPlay-Mirroring using Swift.
Stars: ✭ 40 (+81.82%)
Mutual labels:  deprecated, archived
Code Gov Web
DEPRECATED 🛑- Federal Source Code policy implementation.
Stars: ✭ 423 (+1822.73%)
Mutual labels:  deprecated, archived
ton-client-rs
TON Labs SDK Client Library for Rust
Stars: ✭ 15 (-31.82%)
Mutual labels:  deprecated, archived
Mern Starter
⛔️ DEPRECATED - Boilerplate for getting started with MERN stack
Stars: ✭ 5,175 (+23422.73%)
Mutual labels:  deprecated, archived
Sphero-AR-SDK
🚫 DEPRECATED: Sphero's augmented reality SDK
Stars: ✭ 46 (+109.09%)
Mutual labels:  deprecated, archived
Liquid-Application-Framework-1.0-deprecated
Liquid is a framework to speed up the development of microservices
Stars: ✭ 26 (+18.18%)
Mutual labels:  deprecated, archived
QR
DEPRECATED The bookmarklet and extensions generate QRCode of the current URL for viewing on mobile devices (Google Chrome/Mozilla Firefox/Opera/Safari)
Stars: ✭ 20 (-9.09%)
Mutual labels:  deprecated, archived
fullcontact4j
⛔ [DEPRECATED] A Java client for the FullContact API
Stars: ✭ 28 (+27.27%)
Mutual labels:  deprecated, archived
VRTK.Prefabs
*Deprecated* - A collection of productive prefabs for rapidly building spatial computing solutions in the Unity software.
Stars: ✭ 61 (+177.27%)
Mutual labels:  deprecated, archived
Piranha
[DEPRECATED] This is the legacy version of Piranha CMS for .NET 4.5, MVC 5.2 & WebPages 3.2.
Stars: ✭ 418 (+1800%)
Mutual labels:  deprecated, archived

No Maintenance Intended

DEPRECATED

⚠️ This is no longer supported - unfortunately, I am not in the Xamarin development anymore. ⚠️

MaterialDrawer-Xamarin

Join the chat at https://gitter.im/amatkivskiy/MaterialDrawer-Xamarin

Nuget badge

Xamarin bindings for https://github.com/mikepenz/MaterialDrawer

Download

NuGet Package

Issues

Due to different generic type systems in C# and Java fluent api is not available for:

  • PrimaryDrawerItem
  • SecondaryDrawerItem
  • ToggleDrawerItem
  • SwitchDrawerItem

Simple workaround is to replace

new PrimaryDrawerItem().WithName(Resource.String.drawer_item_compact_header).WithIcon(GoogleMaterial.Icon.GmdWbSunny).WithIdentifier(1).WithCheckable(false);

with

var header = new PrimaryDrawerItem();
header.WithName(Resource.String.drawer_item_compact_header);
header.WithIcon(GoogleMaterial.Icon.GmdWbSunny);
header.WithIdentifier(1);
header.WithCheckable(false);
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].