Simple Text field and labled with text field its easy use....

Features

  • Text field with out-line border, personally using, less code
  • not remembaring extreme properties of TextFormField or TextField

Getting started

Importing Package

import 'package:simp_form_field/simp_form_field.dart'

Form field Example

    SimpField(
        height : 45,
        width : 90,
        controller : null,
        isNum : true       // by default false
    )
  • Extras (default values)
    • isNum : false
    • hintText = ''
    • textAlign = TextAlign.right
    • isFilled = true text field bg color
    • fillColor = Colors.white bg color
    • textStyle = TextStyle() text design
    • contentPadding = EdgeInsets.symmetric(horizontal: 5)
    • borderRadius = 5
    • obscureText = false for password like fields

Label leading form field

    LabelField(
        label : 'name',
        hei1 : 45,    // label height
        wid1 : 90,    // label width  
        hei2 : 45,    // text Field height
        wid2 : 135,    // text Field width 
        controller : null,
        isNum : true   
    )
  • Extras (default values)
    • isNum : false
    • hintText = ''
    • textAlign = TextAlign.left
    • isFilled = true text field bg color
    • fillColor = Colors.white bg color
    • textStyle = TextStyle() text design
    • contentPadding = EdgeInsets.symmetric(horizontal: 5)
    • borderRadius = 5
    • obscureText = false for password like fields
const like = 'sample';

Additional information

Easy Support,Help or Work With Me

Will be adding some extra features like: validator check boxes simple dropdowns