Exemplo n.º 1
0
 private View GetEntry(Keyboard keyBoard, string currentValue, string placeholdertValue, int topPadding, bool isPassword, out InputFieldView textEntry, float addionalBorder = 0, float leftBorder = 20)
 {
     textEntry = new InputFieldView(new InputFieldView.Parameters {
         Keyboard         = keyBoard,
         CurrentValue     = currentValue,
         PlaceholderValue = placeholdertValue,
         TopPadding       = topPadding,
         IsPassword       = isPassword,
         AddionalBorder   = addionalBorder,
         LeftBorder       = leftBorder
     });
     return(textEntry);
 }
Exemplo n.º 2
0
 private bool CheckIsEntryEmpty(InputFieldView entry)
 {
     return(string.IsNullOrEmpty(entry.Text));
 }