Last updated:
0 purchases
flutter ios calculator
flutter_ios_calculator #
iOS 10 and iOS 11+ style calculators for Flutter. Works on Android and iOS.
Screenshots #
This was built as a widget that needs to be integrated with other views via navigation. You can modify the classes to remove the back button if you want to use for a standalone app
Usage #
class CalculatorTestApp extends StatelessWidget{
@override
Widget build(BuildContext context) {
return MaterialApp(
title: "Calculator Test",
home: Calculator(
//optional property
calculatorType: CalculatorType.ios10, //Defaults to CalculatorType.ios12
)
);
}
}
copied to clipboard
You can optionally include just the calculator you want directly by specifying to import ios10_calculator.dart or ios12_calculator.dart
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.