ThunderDesign.Xamarin.Forms.FloatingActionButton
1.0.0
dotnet add package ThunderDesign.Xamarin.Forms.FloatingActionButton --version 1.0.0
NuGet\Install-Package ThunderDesign.Xamarin.Forms.FloatingActionButton -Version 1.0.0
<PackageReference Include="ThunderDesign.Xamarin.Forms.FloatingActionButton" Version="1.0.0" />
paket add ThunderDesign.Xamarin.Forms.FloatingActionButton --version 1.0.0
#r "nuget: ThunderDesign.Xamarin.Forms.FloatingActionButton, 1.0.0"
// Install ThunderDesign.Xamarin.Forms.FloatingActionButton as a Cake Addin #addin nuget:?package=ThunderDesign.Xamarin.Forms.FloatingActionButton&version=1.0.0 // Install ThunderDesign.Xamarin.Forms.FloatingActionButton as a Cake Tool #tool nuget:?package=ThunderDesign.Xamarin.Forms.FloatingActionButton&version=1.0.0
ThunderDesign.Xamarin.Forms.FloatingActionButton
FloatingActionButton (FAB) with custom shadow (Color, Offset, Blur) and custom Animation Easing (Show, Hide) for Xamarin.Forms view (Android, iOS, UWP)
Supported platforms |
---|
✔️ Android |
✔️ iOS |
✔️ UWP |
Getting Started:
Sample
After installation, start using the features you're after.
If you're using XAML, you can add this namespace to your root node to get access to the FAB: xmlns:fab="clr-namespace:ThunderDesign.Xamarin.Forms.FloatingActionButton.Controls;assembly=ThunderDesign.Xamarin.Forms.FloatingActionButton"
.
<fab:FloatingActionButton
Text="+"
Style="{StaticResource RoundFAB}"
Command="{Binding NewItemCommandAsync}"
VerticalOptions="End"
HorizontalOptions="End"
Margin="25"/>
Sample Style (same as Button)
<Style x:Key="RoundFAB" TargetType="fab:FloatingActionButton">
<Setter Property="TextColor" Value="White"></Setter>
<Setter Property="FontSize" Value="30"></Setter>
<Setter Property="WidthRequest" Value="56"></Setter>
<Setter Property="HeightRequest" Value="56"></Setter>
<Setter Property="CornerRadius" Value="28"></Setter>
</Style>
<Style TargetType="fab:FloatingActionButton">
<Setter Property="VisualStateManager.VisualStateGroups">
<VisualStateGroupList>
<VisualStateGroup x:Name="CommonStates">
<VisualState x:Name="Normal">
<VisualState.Setters>
<Setter Property="BackgroundColor" Value="{StaticResource Primary}" />
</VisualState.Setters>
</VisualState>
<VisualState x:Name="Disabled">
<VisualState.Setters>
<Setter Property="BackgroundColor" Value="#332196F3" />
</VisualState.Setters>
</VisualState>
</VisualStateGroup>
</VisualStateGroupList>
</Setter>
</Style>
Installation
Grab the latest ThunderDesign.Xamarin.Forms.FloatingActionButton NuGet package and install in your solution.
Install-Package ThunderDesign.Xamarin.Forms.FloatingActionButton
Use the -version
option to specify an older version to install.
Platforms
- Android
- You will need to add the NuGet package to your .NET Standard library project
- iOS
Important: You will need to add the NuGet package to both your .NET Standard library project and your platform-dependent iOS project.
modify
AppDelegate.cs
and addSharpnado.Shades.iOS.iOSShadowsRenderer.Initialize();
public override bool FinishedLaunching(UIApplication app, NSDictionary options) { ... global::Xamarin.Forms.Forms.Init(); Sharpnado.Shades.iOS.iOSShadowsRenderer.Initialize(); LoadApplication(new App()); ... }
- UWM
Important: You will need to add the NuGet package to both your .NET Standard library project and your platform-dependent UWM project.
modify
App.xaml.cs
and addvar rendererAssemblies = new[] { typeof(UWPShadowsRenderer).GetTypeInfo().Assembly };
protected override void OnLaunched(LaunchActivatedEventArgs e) { ... global::Xamarin.Forms.Forms.SetFlags("Shell_UWP_Experimental"); var rendererAssemblies = new[] { typeof(UWPShadowsRenderer).GetTypeInfo().Assembly }; Xamarin.Forms.Forms.Init(e); ... }
Examples
(TIP: Clone repo, open the solution, build it and run sample app.)
- Xamarin
Please Contribute!
This is an open source project that welcomes contributions/suggestions/bug reports from those who use it. If you have any ideas on how to improve the library, please post an issue here on GitHub. Please check out the How to Contribute.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Sharpnado.Shadows (>= 1.2.0)
- ThunderDesign.Net-PCL.Threading (>= 1.0.5)
- Xamarin.Forms (>= 5.0.0.2337)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 493 | 3/7/2022 |