mirror of
https://github.com/bitwarden/mobile
synced 2025-12-27 05:33:23 +00:00
17 lines
457 B
C#
17 lines
457 B
C#
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Controls
|
|
{
|
|
public class FabLayout : AbsoluteLayout
|
|
{
|
|
public FabLayout(View mainView)
|
|
{
|
|
VerticalOptions = LayoutOptions.FillAndExpand;
|
|
HorizontalOptions = LayoutOptions.FillAndExpand;
|
|
SetLayoutFlags(mainView, AbsoluteLayoutFlags.All);
|
|
SetLayoutBounds(mainView, new Rectangle(0, 0, 1, 1));
|
|
Children.Add(mainView);
|
|
}
|
|
}
|
|
}
|