- Flutter Widget Livebook

TextField

A material design text field.

Example

TextField(
  obscureText: true,
  decoration: InputDecoration(
    border: OutlineInputBorder(),
    labelText: 'Password',
  ),
)

Related Links

  1. Example
  2. Related Links