Mark Tkachenko
Mark Tkachenko
> Waiting for you... i'm currently developing version 4.0)
I mb will change the app icon
I will think about adding this
@verumIgnis can you describe the bug in more detail? I don't face it
 hm, i will understand it later
Use a regular calculator, then swipe to the converter. In the next version, a converter will be separate with its own keyboard
Hi, there is a class that is responsible for entering characters [app/src/main/java/com/forz/calculator/utils/InsertInExpression.kt](https://github.com/forzzzzz/Calculator-You/blob/master/app/src/main/java/com/forz/calculator/utils/InsertInExpression.kt) ``` fun enterDigit(digit: String, inputEditText: ExpressionEditText) { val string = inputEditText.text.toString() deleteSelection(inputEditText, inputEditText.selectionStart, inputEditText.selectionEnd) val cursorPositionStart = inputEditText.selectionStart...