FLUTTER ECOSYSTEM

apesic/rpncalc

一個使用 Flutter 建構的簡單 RPN(逆波蘭表示法)計算器應用

RPNcalc 專案封面
Stars
32
Forks
3
最近推送(UTC)
2023年6月14日
專案狀態
未封存
Alexei Pesic GitHub avatar
GITHUB User

Alexei Pesic ↗

Seattle, WA
語言DartRubySwiftKotlinObjective-C

技術主題

相關套件與範例

使用的依賴

依賴清單 10 項

App 分類

原始 README

以下為英文專案原文快照,最新內容請造訪 GitHub。

展開 / 收合專案 README

icon RPNcalc

Get it on F-Droid

A simple, modern 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
2
+ 

The main benefit is a faster, more accurate interface:

Reverse Polish calculators do not need expressions to be parenthesized, so fewer operations need to be entered to perform typical calculations. Additionally, users of reverse Polish calculators made fewer mistakes than for other types of calculators.

(from the Wikipedia article above).

Screenshot 1 Screenshot 2

Future work

  • Other platforms:
    • iOS
    • desktop (linux/mac/windows)
  • Scientific mode (trig functions, logarithms, etc.)
  • Persistent history

Flutter CI