mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
43 lines
977 B
Dart
43 lines
977 B
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';
|
|
|
|
import 'use_cases.dart';
|
|
|
|
class TextFieldUseCase extends UseCase {
|
|
|
|
@override
|
|
String get name => 'TextField';
|
|
|
|
@override
|
|
String get route => '/text-field';
|
|
|
|
@override
|
|
Widget build(BuildContext context) => const _MainWidget();
|
|
}
|
|
|
|
class _MainWidget extends StatelessWidget {
|
|
const _MainWidget();
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
|
|
title: const Text('TextField'),
|
|
),
|
|
body: const Center(
|
|
child: TextField(
|
|
decoration: InputDecoration(
|
|
labelText: 'Email',
|
|
suffixText: '@gmail.com',
|
|
hintText: 'Enter your email',
|
|
),
|
|
)
|
|
),
|
|
);
|
|
}
|
|
}
|