mirror of
https://github.com/bitwarden/mobile
synced 2024-12-28 09:42:08 +01:00
next return if nextelement set later
This commit is contained in:
parent
3ae6e3ee53
commit
5a88a66709
@ -21,8 +21,6 @@ namespace Bit.App.Controls
|
||||
Thickness? containerPadding = null,
|
||||
bool useButton = false)
|
||||
{
|
||||
_nextElement = nextElement;
|
||||
|
||||
if(!useLabelAsPlaceholder)
|
||||
{
|
||||
Label = new Label
|
||||
@ -50,10 +48,7 @@ namespace Bit.App.Controls
|
||||
Entry.Placeholder = labelText;
|
||||
}
|
||||
|
||||
if(nextElement != null)
|
||||
{
|
||||
Entry.ReturnType = Enums.ReturnType.Next;
|
||||
}
|
||||
NextElement = nextElement;
|
||||
|
||||
var imageStackLayout = new StackLayout
|
||||
{
|
||||
@ -145,6 +140,14 @@ namespace Bit.App.Controls
|
||||
set
|
||||
{
|
||||
_nextElement = value;
|
||||
if(_nextElement != null && Entry != null)
|
||||
{
|
||||
Entry.ReturnType = Enums.ReturnType.Next;
|
||||
}
|
||||
else if(Entry != null)
|
||||
{
|
||||
Entry.ReturnType = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user