arithmetic_ui_package 0.0.1 copy "arithmetic_ui_package: ^0.0.1" to clipboard
arithmetic_ui_package: ^0.0.1 copied to clipboard

A custom Flutter package providing arithmetic operations with pub/sub pattern using GetX.

example/main.dart

import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:custom_package/simple_package.dart';

void main() {
  runApp(const MyExampleApp());
}

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

  @override
  Widget build(BuildContext context) {
    return const GetMaterialApp(
      title: 'Custom Pub Package Demo',
      debugShowCheckedModeBanner: false,
      home: CustomPackageView(),
    );
  }
}
0
likes
140
points
54
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A custom Flutter package providing arithmetic operations with pub/sub pattern using GetX.

License

MIT (license)

Dependencies

flutter, get

More

Packages that depend on arithmetic_ui_package