blob: 87e5335869291240963a1fb2fa145e8fb62dff69 [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());