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,
  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!

Libraries

intry
MIT License Copyright (c) 2024 Mansour Djawadi Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: