mirror of
https://github.com/bitwarden/mobile
synced 2025-12-15 15:53:44 +00:00
new icons for ios. new renderers for editor, picker, table view. android style changes.
This commit is contained in:
17
src/App/Controls/ExtendedEditor.cs
Normal file
17
src/App/Controls/ExtendedEditor.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace Bit.App.Controls
|
||||
{
|
||||
public class ExtendedEditor : Editor
|
||||
{
|
||||
public static readonly BindableProperty HasBorderProperty =
|
||||
BindableProperty.Create(nameof(HasBorder), typeof(bool), typeof(ExtendedEditor), true);
|
||||
|
||||
public bool HasBorder
|
||||
{
|
||||
get { return (bool)GetValue(HasBorderProperty); }
|
||||
set { SetValue(HasBorderProperty, value); }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user