Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AnthonyH93/HexaCalc
Three tabbed calculator for decimal, hexadecimal and binary for iOS built in Swift with Xcode. Provides numerous operations and seamless conversion between the three tabs.
https://github.com/AnthonyH93/HexaCalc
app calculator ios swift
Last synced: 3 months ago
JSON representation
Three tabbed calculator for decimal, hexadecimal and binary for iOS built in Swift with Xcode. Provides numerous operations and seamless conversion between the three tabs.
- Host: GitHub
- URL: https://github.com/AnthonyH93/HexaCalc
- Owner: AnthonyH93
- License: mit
- Created: 2020-07-20T04:24:45.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-02-19T05:46:22.000Z (9 months ago)
- Last Synced: 2024-04-08T02:18:55.841Z (7 months ago)
- Topics: app, calculator, ios, swift
- Language: Swift
- Homepage:
- Size: 22.5 MB
- Stars: 37
- Watchers: 2
- Forks: 18
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- fucking-open-source-ios-apps - HexaCalc
README
# HexaCalc
## Available on the iOS App Store
https://apps.apple.com/app/hexacalc/id1529225315## App Icon
![alt text](HexaCalcIconGreen1024.png?raw=true)
## About
Three tabbed calculator for decimal, hexadecimal and binary for iOS built in Swift with Xcode. Provides numerous operations and seamless conversion between the three tabs.With a seperate screen for each of the number systems users can focus on exactly what system they need - many of the apps currently on the app store with similar functionality have all three number systems on the same screen or they are severely outdated in terms of UI.
Switching tabs will result in instant conversion of the current value on the screen and will allow you to complete operations on that current number on the new screen.
For the hexadecimal and binary calculators there is a limit of 64 bits as they use integer conversion, however the decimal calculator will allow you to work with larger numbers even when the other two calculator screens show an error.
Tapping on the calculator output label causes the currently displayed number to be copied to your phone's clipboard. This works for any of the three tabs!
Note: All screenshots shown were taken on an iPhone X simulator.
## System Requirements
This app is optimized to run and look amazing on all iPhones and iPads which are supported by iOS13/iPadOS13.
For iPads this includes support for both landscape and portrait modes as well as support for any multitasking screen size and Slide Over.
## Operations
### Hexadecimal Calculator
* Addition, subtraction, multiplication, division
* AND, OR, XOR, NOT
* All clear, delete### Device Screenshots for Hexacdecimal Calculator
Green Positive Hexadecimal Output | Green Negative Hexadecimal Output | Red Negative Hexadecimal White Text Output | Orange Three Tab Positive Hexadecimal Output
---------------------- | -------------- | --------------------- | -----------------------------------
![alt text](iPhoneX_DeviceScreenshots/GreenPositiveHex.png?raw=true) | ![alt text](iPhoneX_DeviceScreenshots/GreenNegativeHex.png?raw=true) | ![alt text](iPhoneX_DeviceScreenshots/RedNegativeHexWhiteText.png?raw=true) | ![alt text](iPhoneX_DeviceScreenshots/OrangeThreeTabPositiveHex.png?raw=true)### Binary Calculator
* Addition, subtraction, multiplication, division
* AND, OR, XOR, NOT
* 1's compliment, 2's compliment, left shift, right shift
* All clear, delete### Device Screenshots for Binary Calculator
Green Positive Binary Output | Green Negative Binary Output | Red Negative Binary White Text Output | Teal Two Tab Positive Binary Output
---------------------- | -------------- | --------------------- | -----------------------------------
![alt text](iPhoneX_DeviceScreenshots/GreenPositiveBin.png?raw=true) | ![alt text](iPhoneX_DeviceScreenshots/GreenNegativeBin.png?raw=true) | ![alt text](iPhoneX_DeviceScreenshots/RedNegativeBinWhiteText.png?raw=true) | ![alt text](iPhoneX_DeviceScreenshots/TealPositiveTwoTabBin.png?raw=true)### Decimal Calculator
* Addition, subtraction, multiplication, division
* All clear, delete, plus/minus, dot### Device Screenshots for Decimal Calculator
Green Positive Decimal Output | Green Negative Decimal Output | Red Negative Decimal White Text Output | Orange Three Tab Positive Decimal Output
---------------------- | -------------- | --------------------- | -----------------------------------
![alt text](iPhoneX_DeviceScreenshots/GreenPositiveDec.png?raw=true) | ![alt text](iPhoneX_DeviceScreenshots/GreenNegativeDec.png?raw=true) | ![alt text](iPhoneX_DeviceScreenshots/RedNegativeDecWhiteText.png?raw=true) | ![alt text](iPhoneX_DeviceScreenshots/OrangeThreeTabPositiveDec.png?raw=true)## User Customization
This app uses data persistance to implement saved user customization allowing each user to choose their customizations through a settings menu.
### Customization options
* 8 different system colours which change the colour of buttons and the app icon
* The ability to disable or enable any combination of calculator tabs allowing the user to focus on what is important for them
* The option to change the default calculator text colour from white to your selected colour
* Options for the copy and paste clipboard gestures as well as the ability to disable themThe settings menu also includes navigation to the About HexaCalc view which has links to the privacy policy and terms and conditions documents.
### Device Screenshots for Settings Tab
Default Settings View | Default About HexaCalc View | Red Two Tab Settings View | Changing Icon to Blue
---------------------- | -------------- | --------------------- | -----------------------------------
![alt text](iPhoneX_DeviceScreenshots/DefaultSettings.png?raw=true) | ![alt text](iPhoneX_DeviceScreenshots/DefaultAboutHexaCalcWithOpenSource.png?raw=true) | ![alt text](iPhoneX_DeviceScreenshots/RedTwoTabSettings.png?raw=true) | ![alt text](iPhoneX_DeviceScreenshots/ChangeIconBlue.png?raw=true)## Future Development
There are many features that I would like to add to HexaCalc and these are some of the ones that I will look into implementing next:
* Localization
* As of now, the app only supports English, it would be great to add support for many more languages
* Improve the bit shift operations
* Bit shifting is a common operation, but it is only implemented on the binary calculator and only with shifts of 1
* Add X>>Y and X<