url_textformfield 1.0.0 copy "url_textformfield: ^1.0.0" to clipboard
url_textformfield: ^1.0.0 copied to clipboard

Textformfield designed for inputing urls, with options to add leading and trailing text, appended at begining and end of input

url_textformfield #

Textformfield designed for inputing urls, with options to add leading and trailing text, appended at begining and end of input

Getting Started #

Add this to your package's pubspec.yaml file


dependencies:
  url_textformfield: ^1.0.0
copied to clipboard

Usage #

First, you just have to import the package using:

import 'package:url_textformfield/url_textformfield.dart';
copied to clipboard

Then , use the widget as below,


  @override
  Widget build(BuildContext context) {
    return UrlTextFormField(
      focusNode: ctrlFocusNode,  
      padding: const EdgeInsets.all(10),
      onChanged: (val) {},
      leadingText: 'https://',
      suffixIcon: const Icon(
        Icons.check,
        color: Colors.green,
      ),
      trailingText: ".com",
    );
copied to clipboard

Example #

screenshot

Contributing #

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

1
likes
150
points
33
downloads

Publisher

verified publishersivaprasadnk.dev

Weekly Downloads

2024.09.19 - 2025.04.03

Textformfield designed for inputing urls, with options to add leading and trailing text, appended at begining and end of input

Repository (GitHub)

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

flutter

More

Packages that depend on url_textformfield