https://github.com/apesic/rpncalc
Dart27
last year
A simple RPN (Reverse Polish Notation) calculator app built using Flutter
GNU General Public License v3.0
A simple, modern RPN calculator that uses RPN.
Reverse Polish Notation is a system where the operators are entered _after_ the operands.
For example, rather than 2 + 2, you would enter:
2
+
The main benefit is a faster, more accurate interface.