FLUTTER ECOSYSTEM

zuvola/flutter_simple_calculator

Flutter-Widget, das eine einfache Taschenrechner bereitstellt.

Projektcover von flutter_simple_calculator
Stars
26
Forks
27
Letzter Push (UTC)
04.03.2026
Projektstatus
Aktiv
zuvola GitHub avatar
SprachenDartC++CMakeHTMLCSwiftKotlinObjective-C

Von diesem Repository veröffentlichte Pakete

Verwendete Abhängigkeiten

Abhängigkeiten 7 Einträge

Original-README

Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.

Projekt-README ein-/ausklappen

flutter_simple_calculator

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

pub package

Default style
https://github.com/zuvola/flutter_simple_calculator/blob/master/example/screenshot_1.png?raw=true
With custom styles
https://github.com/zuvola/flutter_simple_calculator/blob/master/example/screenshot_2.png?raw=true
SimpleCalculator(
  theme: const CalculatorThemeData(
    displayColor: Colors.black,
    displayStyle: const TextStyle(fontSize: 80, color: Colors.yellow),
    /*...*/
  ),
)
Localize
https://github.com/zuvola/flutter_simple_calculator/blob/master/example/screenshot_3.png?raw=true
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 SimpleCalculator. Or use the SimpleCalculator 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),
  ),
)