mirror of
https://github.com/bitwarden/mobile
synced 2025-12-14 23:33:34 +00:00
* Refactored CustomFields to stop using RepeaterView and use BindableLayout and divided the different types on different files and added a factory to create them * Fix formatting
13 lines
259 B
C#
13 lines
259 B
C#
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Lists.ItemLayouts.CustomFields
|
|
{
|
|
public partial class BooleanCustomFieldItemLayout : StackLayout
|
|
{
|
|
public BooleanCustomFieldItemLayout()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|