awesome_calculator

awesome_calculator is a robust and efficient Dart SDK designed to simplify mathematical computations in your Flutter applications. Whether you're building a finance app, educational tool, or any project requiring arithmetic and advanced math operations, this package provides a clean and easy-to-use API.

Features

  • Perform basic arithmetic: addition
  • Lightweight and optimized for performance
  • Seamless integration with Flutter

Installation

Add the following to your pubspec.yaml file:

dependencies:
  awesome_calculator: ^1.0.0

Then run:

flutter pub get

Usage

import 'package:awesome_calculator/awesome_calculator.dart';

void main() {
  var calc = Calculator();
  print(calc.add(10, 5));       // Output: 15
}

License

This project is licensed under the MIT License - see the LICENSE file for details.

Libraries

awesome_calculator