Features

Getting started

Usage


const like = 'sample';

Additional information

Simple Textfield

Simple textfield package lets you add a super textfield to your Flutter app.

Installation

  1. Add the latestversion of package to your pubspec.yaml (and run'dart pub get');

dependencies: simple_textfield: ^1.0.0

  1. Import the package and use it in your Flutter App.

import 'package:simple_textfield/simple_textfield.dart';

Example

There are a number of properties that you can modify:

  • enabled,focused and errorBorder
  • texteditingcontroller
  • min & max lines
  • cursorColor & cursorWidth
  • hint & lable text
  • isDense
  • fillColor
  • focusnode

'''dart class SampleScreen extends StatefulWidget { const SampleScreen({Key? key}) : super(key: key);

@override State

class _SampleScreenState extends State

Next Goals

  • x Add controller for target. you can also add controller they help to a specific field.

  • x Change hintText and labelText. change text for your requirment.

  • [] Add more tectfield to the package.