intry 0.0.1 intry: ^0.0.1 copied to clipboard
Intry is a highly efficient and rich UI component set designed specifically for creating editor and graphic design applications.
Intry #
Intry
is a highly efficient and rich UI component set designed specifically for creating editor and graphic design applications.
One of the components in Intry, NumericItery
, combines both slider and text field capabilities in a compact and user-friendly package. With its intuitive interface and extensive customization options, NumericItery makes it effortless to incorporate interactive numerical values into your applications, enhancing the overall user experience.
- Installation #
Add intry
to your pubspec.yaml file:
For detailed installation instructions, refer to the installation guide on pub.dev.
- Getting Started #
To use this library, import package:intry_numeric/intry_numeric.dart
.
int _integerValue = 0;
NumericIntry(
min: 0,
max: 100,
divisions: 5,
postfix: "%",
value: _integerValue,
onChanged: (int value) {
setState(() {
_integerValue = value;
});
},
),
This revised README provides clear installation instructions, options for configuring particles, and steps for integrating the intry
in your Flutter app. If you have any questions or need further assistance, don't hesitate to ask!