blob: b5a00e83863473e8a8cebba029a99c983e440883 [file] [log] [blame]
// 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.
import 'package:flutter/material.dart';
/// Flutter code sample for [TextField].
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 TextFieldExampleApp extends StatelessWidget {
const TextFieldExampleApp({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 TextFieldExampleApp());