Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
June 17, 2021 08:57 am GMT

How to create a simple Floating Button with Xamarin.Forms/MAUI

For a while, I have been trying to search how to create a simple Floating Button and this is my final code:

<AbsoluteLayout>     <!--Other components-->     <ImageButton Source="plus.png"             BackgroundColor="Green"        CornerRadius="80"            AbsoluteLayout.LayoutFlags="PositionProportional"              AbsoluteLayout.LayoutBounds=".95,.95,80,80" /></AbsoluteLayout>
  • The Source is the picture you want to use.
  • The BackgroundColor is the color you want to use in HEX.
  • The CornerRadius is to create the form.
  • The AbsoluteLayout.LayoutBounds is the location.

This will be the result:

example

You can get the icon from:

https://materialdesignicons.com

And I got some inspiration from here:

https://stackoverflow.com/a/54519048/1928691


Original Link: https://dev.to/fanmixco/how-to-create-a-simple-floating-button-with-xamarin-forms-maui-4k7i

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To