mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
43 lines
1.0 KiB
Dart
43 lines
1.0 KiB
Dart
// 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());
|