// Copyright 2014 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Flutter code sample for TextField import 'package:flutter/material.dart'; class ObscuredTextFieldSample extends StatelessWidget { const ObscuredTextFieldSample({super.key}); @override Widget build(BuildContext context) { return const SizedBox( width: 250, child: TextField( obscureText: true, decoration: InputDecoration( border: OutlineInputBorder(), labelText: 'Password', ), ), ); } } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( appBar: AppBar(title: const Text('Obscured Textfield')), body: const Center( child: ObscuredTextFieldSample(), ), ), ); } } void main() => runApp(const MyApp());