Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sudarika/basic-calculator
This is a basic calculator application for Android, built using Kotlin. The app allows users to perform simple arithmetic operations by entering two numbers and selecting the desired operation.
https://github.com/sudarika/basic-calculator
android-application android-studio calculator-application kotlin
Last synced: about 1 month ago
JSON representation
This is a basic calculator application for Android, built using Kotlin. The app allows users to perform simple arithmetic operations by entering two numbers and selecting the desired operation.
- Host: GitHub
- URL: https://github.com/sudarika/basic-calculator
- Owner: Sudarika
- Created: 2023-12-21T06:06:35.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-07-10T01:23:25.000Z (7 months ago)
- Last Synced: 2024-11-06T09:07:14.601Z (3 months ago)
- Topics: android-application, android-studio, calculator-application, kotlin
- Language: Kotlin
- Homepage:
- Size: 98.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Basic Calculator App
A simple Android calculator app that performs basic arithmetic operations: addition, subtraction, multiplication, and division.
## Table of Contents
- [Introduction](#introduction)
- [Features](#features)
- [Installation](#installation)
- [Usage](#usage)
- [Contributing](#contributing)
- [License](#license)## Introduction
This is a basic calculator application for Android, built using Kotlin. The app allows users to perform simple arithmetic operations by entering two numbers and selecting the desired operation.
## Features
- Addition
- Subtraction
- Multiplication
- Division## Installation
- Clone this repository to your local machine.
- Open the project in Android Studio.
- Build the project to download the necessary dependencies.
- Run the app on an Android device or emulator.## Usage
Enter the numbers:
- Enter the first number in the edtNumber1 input field.
- Enter the second number in the edtNumber2 input field.Select the operation:
- Click on the + button to add the numbers.
- Click on the - button to subtract the second number from the first number.
- Click on the * button to multiply the numbers.
- Click on the / button to divide the first number by the second number.View the result:
- The result of the selected operation will be displayed as a Toast message.