A React Native simple calculator application, do the Basic Math Operations (Sum, Subtract, Multiply , and Division).
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.
After click on Sum operation button the application will execute sum operation on the two inputs and give result output: 100 + 100 = 200.
After click on Subtract operation button the application will execute subtract operation on the two inputs and give result output: 100 - 100 = 0.
After click on Multiply operation button the application will execute multiply operation on the two inputs and give result output: 100 × 100 = 10000.
After click on Division operation button the application will execute division operation on the two inputs and give result output: 100 ÷ 100 = 1.