Last updated:
0 purchases
extensionss
extensions #
A new Flutter Extension plugin.
String Extension: #
Email Validation: #
var email = "[email protected]";
var isValidEmail = email.isEmail();
copied to clipboard
More: #
var email = "[email protected]";
var isValidEmail = email.isEmail();
var number = "2500";
var convertedTODouble = number.convertToDouble();
var convertedTODoubleWithFraction = number.convertToDouble(fraction: 2);
var convertedToInt = number.convertToInt();
String userName;
var checkIsNullOrNot = userName.nullSafeString();
var checkUserNameIsNull = userName.isNull();
var alphaNumber = "9234AA44dd";
var isAlphanumeric = number.isAlphanumeric();
var userProfile = "20.20";
var isValidPercentage = userProfile.isPercentage();
copied to clipboard
Redirect screen: #
context.redirectTo(child: NewScreen());
copied to clipboard
Push only: #
context.redirectOnly(child: HomeScreen());
copied to clipboard
HideKeyboard: #
context.hideKeyboard();
copied to clipboard
Dialog: #
context.openDialog(child: NewScreen());
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.