Last updated:
0 purchases
nsr calculator
A sharable calculator package
Features #
Basic functionality of calculator
Getting started #
No prerequisites to use this package
Just import the package import 'package:nsr_calculator/nsr_calculator.dart'; and start using it
You can find the source code of package at https://github.com/momin96/nsr_calculator
Usage #
Just a sample, yet to update how to use it
import 'package:nsr_calculator/nsr_calculator.dart';
void main() {
runApp(MainApp());
}
class MainApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
appBar: AppBar(),
body: Calculator(),
),
);
}
}
copied to clipboard
Additional information #
For more information you can reach to
https://nasirmomin.web.app or https://github.com/momin96
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.