You cannot delete all characters in the input field for "Amount" when sending (PrepareTransaction).
This is a bit annoying and confusing for users which might want to clear amount field and enter something else.
However, when the user starts typing, the first digit, i.e. 2 will replace the 0, events:
State: amountTextfield.text == "0"Event: user inputs: "2"State: amountTextfield.text == "2"
Or in words, the digit "2" replaces the "0", it does not become "02", which is good, which makes this a non critical bug.
You cannot delete all characters in the input field for "Amount" when sending (
PrepareTransaction
).This is a bit annoying and confusing for users which might want to clear amount field and enter something else.
However, when the user starts typing, the first digit, i.e.
2
will replace the0
, events: State:amountTextfield.text
=="0"
Event: user inputs:"2"
State:amountTextfield.text
=="2"
Or in words, the digit "2" replaces the "0", it does not become "02", which is good, which makes this a non critical bug.