All Projects → ahoefling → CircleButtonMenu

ahoefling / CircleButtonMenu

Licence: MIT license
No description or website provided.

Programming Languages

C#
18002 projects
powershell
5483 projects
shell
77523 projects

Projects that are alternatives of or similar to CircleButtonMenu

Prototype.Forms.Controls
This sample app contains a random mixture of Xamarin/Xamarin.Forms controls, views, and functionality snippets that I've created.
Stars: ✭ 21 (-25%)
Mutual labels:  xamarin, xamarin-forms, xamarin-plugin
VersionTrackingPlugin
Version Tracking Plugin for Xamarin and Windows
Stars: ✭ 62 (+121.43%)
Mutual labels:  xamarin, xamarin-forms, xamarin-plugin
XamarinClipboardPlugin
Cross Platform Clipboard access for Xamarin
Stars: ✭ 24 (-14.29%)
Mutual labels:  xamarin, xamarin-forms, xamarin-plugin
LaunchMapsPlugin
Launch External Maps Plugin for Xamarin and Windows
Stars: ✭ 49 (+75%)
Mutual labels:  xamarin, xamarin-forms, xamarin-plugin
ButtonCirclePlugin
Circle Buttons with icon for your Xamarin.Forms Applications
Stars: ✭ 96 (+242.86%)
Mutual labels:  xamarin, xamarin-forms, xamarin-plugin
plugin-template
Plugin for .NET Template
Stars: ✭ 22 (-21.43%)
Mutual labels:  xamarin, xamarin-forms
Aiforms.effects
AiForms.Effects for Xamarin.Forms
Stars: ✭ 245 (+775%)
Mutual labels:  xamarin, xamarin-forms
XamarinPipelineDemo
Demo and explanation on how to do several common tasks for Xamarin.Forms Android in an Azure DevOps pipeline on a Microsoft-hosted agent. Tasks include: build-based version, APK signing, publishing artifacts, unit tests, and UI tests (both via emulator in Azure DevOps and via real devices in App Center).
Stars: ✭ 23 (-17.86%)
Mutual labels:  xamarin, xamarin-forms
Connectivityplugin
Connectivity Plugin for Xamarin and Windows
Stars: ✭ 253 (+803.57%)
Mutual labels:  xamarin, xamarin-forms
Xamarin.Forms.MultiSelectListView
☑️ Select multiple rows in a listview with xamarin.forms
Stars: ✭ 61 (+117.86%)
Mutual labels:  xamarin-forms, xamarin-plugin
XamarinFormsPinView
PIN keyboard for Xamarin.Forms.
Stars: ✭ 83 (+196.43%)
Mutual labels:  xamarin-forms, xamarin-plugin
xamarin-mvvvm-frameworks
A Comparison of MVVM Frameworks for Xamarin Projects
Stars: ✭ 44 (+57.14%)
Mutual labels:  xamarin, xamarin-forms
Flexbutton
Flexible button control for Xamarin.Forms
Stars: ✭ 245 (+775%)
Mutual labels:  xamarin, xamarin-forms
SKOR.UI
UI Controls for Xamarin.Forms
Stars: ✭ 56 (+100%)
Mutual labels:  xamarin, xamarin-forms
Magicgradients
Draw breathtaking backgrounds in your Xamarin.Forms application. It's a kind of magic.
Stars: ✭ 236 (+742.86%)
Mutual labels:  xamarin, xamarin-forms
Animationnavigationpage
AnimationNavigationPage is a NavigationPage with custom transitions animation effects.
Stars: ✭ 235 (+739.29%)
Mutual labels:  xamarin, xamarin-forms
YoApp
YoApp, messaging suite with batteries included!
Stars: ✭ 17 (-39.29%)
Mutual labels:  xamarin, xamarin-forms
Cognitive-Face-Xamarin
A client library that makes it easy to work with the Microsoft Cognitive Services Face API on Xamarin.iOS, Xamarin.Android, and Xamarin.Forms and/or Portable Class Libraries.
Stars: ✭ 18 (-35.71%)
Mutual labels:  xamarin, xamarin-forms
DrinksGalleryApp
Xamarin.Forms goodlooking UI sample using the new CarouselView (Parallax).
Stars: ✭ 51 (+82.14%)
Mutual labels:  xamarin, xamarin-forms
Xamarin.forms.datagrid
DataGrid Component For Xamarin.Forms Projects
Stars: ✭ 226 (+707.14%)
Mutual labels:  xamarin, xamarin-forms

Circle Button Menu for Xamarin.Forms

A Circle Button Menu Control for Xamarin.Forms

Setup

  • Available on NuGet: NuGet
  • Install into your PCL/.NET Standard and Client Projects

Build

Platform Support

CircleButtonMenu is available for use in the following supported platforms.

Platform Supported Version
Xamarin.Android Yes API 23 +
Xamarin.iOS Yes iOS 10 +

Demo Demo-Circle

Usage

iOS and Android####

Initialize the renderer in the AppDelegate (iOS) and MainActivity (Android)

Xamarin.Forms.Init();
CircleButtonMenuRenderer.Init();

XAML:

Add the namespace in the xmlns:

xmlns:controls="clr-namespace:CircleButtonMenu.Abstractions;assembly=CircleButtonMenu.Abstractions"

Add the control:

<controls:CircleButtonMenu FillColor="Black"
                           StrokeColor="Red"
                           OpenImageSource="plus"
                           CloseImageSource="minus"
                           Direction="DownLeft"
                           Flow="Expand"
                           ItemsSource="{Binding Controls}"
                           IndexSelected="{Binding ControlSelected}" />

View Model:

public IEnumerable<string> Controls = new [] { "resource1", "resource2" };
public ICommand ControlSelected = new Command(() => /* do something */ );

Bindable Properties

Property Description Default Value Version
FillColor Gets or Sets the fill color for the circle. Color.Black v1.0.9
StrokeColor Gets or Sets the circle border color Color.Black v1.0.9
OpenImageSource Gets or Sets the open menu ImageSource null v1.0.9
CloseImageSource Gets or Sets the close menu ImageSource null v1.0.9
ItemsSource Gets or Sets the menu buttons null v1.0.9
IndexSelected Gets or Sets the command for IndexSelected null v1.0.9
Direction Gets or Sets the direction the controls will flyout in Up Preview
Flow Gets or Sets the flow of the controls, ex: Snake Expand Preview

Created By: @Andrew_Hoefling

License

The MIT License (MIT) see License File

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].