mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +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
253 B
C#
13 lines
253 B
C#
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Lists.ItemLayouts.CustomFields
|
|
{
|
|
public partial class TextCustomFieldItemLayout : StackLayout
|
|
{
|
|
public TextCustomFieldItemLayout()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|