money_readable

Creator: coderz1093

Last updated:

0 purchases

money_readable Image
money_readable Images
Add to Cart

Description:

money readable

Money Readable #
Money converter
Installation #

Add the latest version of package to your pubspec.yaml (and rundart pub get):

dependencies:
money_readable: ^1.1.14
copied to clipboard

Import the package and use it in your Flutter App.

import 'package:money_readable/money_readable.dart';
copied to clipboard







final n1 = moneyReadableInt(1234); // 1.2K
final n2 = moneyReadableInt(12340000); // 12M
copied to clipboard

final n1 = moneyReadableIntInd(1234); // 1.2K
final n2 = moneyReadableIntInd(12340000); // 1.2Cr

///Usage of this extension
class MyPage extends StatelessWidget {
const MyPage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
body:Column(children:[
Text("Hello"),
20.width, ///Extension
Text("World"),
20.height /// ///Extension
])
);
}
}
copied to clipboard
///We have added Custom Loader and Flutter Toast message so that you use easly in your project
CustomLoader.message("Your msg"));
CustomLoader.loader());
CustomLoader.closeLoader());
CustomLoader.showLoader("Please wait..."));
copied to clipboard
if (await isNetworkAvailable()) {
///Intenet Available
} else {
///Intenet Not Available
}
copied to clipboard
///Progress Dialog box
LoadingIndicatorDialog().show(context);
LoadingIndicatorDialog().dismiss();
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.