Skip to content
/ intry Public

Intry is a highly efficient and rich UI component set designed specifically for creating editor and graphic design applications.

License

Notifications You must be signed in to change notification settings

manjav/intry

Repository files navigation

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.

- IntryNumericField

double _numericValue = 10;

IntryNumericField(
  min: 0,
  max: 100,
  divisions: 5,
  formatter: "%sMB",
  value: _numericValue,
  onChanged: (double value) =>
      setState(() => _numericValue = value),
),

- IntryTextField

String _textValue = "Test";

IntryTextField(
  value: _textValue,
  formatter: "« %s »",
  decoration: IntryFieldDecoration.outline(context),
  onChanged: (String value) =>
      setState(() => _textValue = value),
),

Custom Mouse Cursor


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!

About

Intry is a highly efficient and rich UI component set designed specifically for creating editor and graphic design applications.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published