ready_made_calculator 0.0.2 copy "ready_made_calculator: ^0.0.2" to clipboard
ready_made_calculator: ^0.0.2 copied to clipboard

A Ready made Calculator with functionality included to speed up Application Process.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:ready_made_calculator/ready_made_calculator.dart';

void main() {
  WidgetsFlutterBinding.ensureInitialized();
  SystemChrome.setEnabledSystemUIMode(SystemUiMode.immersiveSticky);
  SystemChrome.setSystemUIOverlayStyle(
      const SystemUiOverlayStyle(statusBarColor: Colors.transparent));
  runApp(
    const MyApp(),
  );
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      debugShowCheckedModeBanner: true,
      home: Scaffold(
        body: ReadyMadeCalculator(),
      ),
    );
  }
}
3
likes
130
pub points
57%
popularity

Publisher

unverified uploader

A Ready made Calculator with functionality included to speed up Application Process.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, math_expressions, string_validator

More

Packages that depend on ready_made_calculator