Skip to content

AmeerQatmosh/SimpleCalculatorApp

Repository files navigation

SimpleCalculatorApp

A React Native simple calculator application, do the Basic Math Operations (Sum, Subtract, Multiply , and Division).

image

User Interface:

The User interface is a Calculator Component contains two "Text Input" component for the two input fields, One "Text" Component for output result and four "Pressable/Button" Component for the math basic operations.

App Name

Basic Operations (+,-,×,÷):

1. Sum Operation:

After click on Sum operation button the application will execute sum operation on the two inputs and give result output: 100 + 100 = 200.

image

2. Subtract operatuin:

After click on Subtract operation button the application will execute subtract operation on the two inputs and give result output: 100 - 100 = 0.

image

3. Multiply Operation:

After click on Multiply operation button the application will execute multiply operation on the two inputs and give result output: 100 × 100 = 10000.

image

4. Division Operation:

After click on Division operation button the application will execute division operation on the two inputs and give result output: 100 ÷ 100 = 1.

image