flutter-calculator
flutter-calculator copied to clipboard
An elegant calculator app written in Flutter
thank you for letting me work on this . 1. fixed the issue for SDK version. App can run on the latest android device now. 2. changes some little design...
There is no concrete way to handle negative numbers within this implementation. For instance, if I want to calculate: `-85 + 6` or `76+(-87)` Then there is no way to...
I just tried the calculator, and the approximations displayed here are't useful for most mathematics. For instance, `1500/1536` equates to around `0.976` in reality. Rounded off, this could be displayed...
All widgets get pushed up upon start because the keyboard launches. Add resizeToAvoidBottomPadding: false, to the Scaffold to prevent this. Though the better solution is to prevent the keyboard from...