1234567891011121314151617181920212223242526272829 |
- import 'package:flutter/material.dart';
- class PasswordInput extends StatefulWidget {
- @override
- _PasswordInputState createState() => _PasswordInputState();
- }
- class _PasswordInputState extends State<PasswordInput> {
- String _password = '';
- @override
- Widget build(BuildContext context) {
- return Padding(
- padding: const EdgeInsets.all(16.0),
- child: TextField(
- obscureText: true,
- onChanged: (value) {
- setState(() {
- _password = value;
- });
- },
- decoration: InputDecoration(
- border: OutlineInputBorder(),
- labelText: 'Password',
- ),
- ),
- );
- }
- }
|