mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
* PM-2320 Added new view for block autofill URIs on Android * PM-2320 Fix formatting * PM-2320 Improved validations on block autofill uris * PM-2320 Improved autofill block uris placeholder colors on different themes
14 lines
200 B
C#
14 lines
200 B
C#
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Controls
|
|
{
|
|
public class CustomLabel : Label
|
|
{
|
|
public CustomLabel()
|
|
{
|
|
}
|
|
|
|
public int? FontWeight { get; set; }
|
|
}
|
|
}
|