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

A package for all oyur arithmatic operations.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:math_package/math_package.dart';

void main() {
  runApp(const MaterialApp(
    home: MathDemo(),
  ));
}

class MathDemo extends StatelessWidget {
  const MathDemo({super.key});

  void arithmaticFuntion() {
    var add = ArithmeticFunctions.add(2, 3);
    print("add: $add");
  }

  @override
  Widget build(BuildContext context) {
    arithmaticFuntion();
    return const Text("Math package Example");
  }
}
1
likes
140
points
18
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A package for all oyur arithmatic operations.

Repository (GitHub)
View/report issues

License

MIT (license)

More

Packages that depend on math_package