flutter_simple_calculator 1.0.1 copy "flutter_simple_calculator: ^1.0.1" to clipboard
flutter_simple_calculator: ^1.0.1 copied to clipboard

outdated

Flutter widget that provides simple calculator. You can easily integrate a calculator to your apps.

flutter_simple_calculator #

Flutter widget that provides simple calculator. You can easily integrate a calculator to your apps.

pub package

Default style #

With custom styles #

SimpleCalculator(
  theme: const CalculatorThemeData(
    displayColor: Colors.black,
    displayStyle: const TextStyle(fontSize: 80, color: Colors.yellow),
    /*...*/
  ),
)

Localize #

SimpleCalculator(
  numberFormat: NumberFormat.decimalPattern("fa_IR")
    ..maximumFractionDigits = 6,
)

Getting Started #

To use this plugin, add flutter_simple_calculator as a dependency in your pubspec.yaml file.

dependencies:
 flutter_simple_calculator: 

Import the library in your file.

import 'package:flutter_simple_calculator/flutter_simple_calculator.dart';

See the example directory for a complete sample app using GridButton. Or use the GridButton like below.

SimpleCalculator(
  value: 123.45,
  hideExpression: true,
  onChanged: (key, value, expression) {
    /*...*/
  },
  theme: const CalculatorThemeData(
    displayColor: Colors.black,
    displayStyle: const TextStyle(fontSize: 80, color: Colors.yellow),
  ),
)
95
likes
0
pub points
92%
popularity

Publisher

verified publisherzuvola.com

Flutter widget that provides simple calculator. You can easily integrate a calculator to your apps.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

auto_size_text, expressions, flutter, flutter_grid_button, intl

More

Packages that depend on flutter_simple_calculator