switch_text_field

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

switch text field

It is a UI element for a unique text field which can switch to uneditable text widget on icon click and vice versa.
It is build over general TextField and Text widget along with icons that helps in switching between two states.
Features #

Getting started #
To use this plugin, add switch_text_field as a dependency in your pubspec.yaml file.
Usage #
You can import the package with:
import 'package:switch_text_field/switch_text_field.dart';
copied to clipboard
Use it as follows:
Material Example 1: #
SwitchTextField(),
copied to clipboard
Above code will build widget with default parameters, though their are some customizable properties like text_color, icon_color, background_color, icon_background_color, text_icon, text_field_icon etc.
Material Example 2: #
SwitchTextField(
background_color: Colors.black,
icon_color: Colors.black,
icon_background_color: Colors.white,
text_color: Colors.white,
isEditing: false,
text_icon: Icons.cancel_outlined,
text_field_icon: Icons.add,
text_field_hint: "Enter title... ",
),
copied to clipboard
In the code above, the some customizable properties allows us to change colors, icons and text properties for the widget[Details below].
Parameters #
background_color : [Color] Background color for the container.
icon_color : [Color]Color for the icon.
icon_background_color : [Color]Background color for icon button.
text_color : [Color]Color for the text.
font_size : [Double]Font size for the text and text field.
text_field_hint : [String]Hint for the text field to be shown at the initial.
text_field_icon : [IconData]Icon to be shown along text field.
text_icon : [IconData]Icon to be shown along uneditable text.
isEditing : [Bool]Current state of the widget: true means TextField is editable otherwise false means non-editable content.
How you can help #
Contribution Guidelines

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.