Skip to content

Instantly share code, notes, and snippets.

@flexboni
Last active November 30, 2023 00:57
Show Gist options
  • Save flexboni/1d15db93f05ff330a1c2df60b5cbdfc2 to your computer and use it in GitHub Desktop.
Save flexboni/1d15db93f05ff330a1c2df60b5cbdfc2 to your computer and use it in GitHub Desktop.
플러터챌린지 4일차 기본문제 - 김구봉
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Challenge',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key});
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
late TextEditingController _firstController;
late TextEditingController _secondController;
late FocusNode _firstNode;
late FocusNode _secondNode;
bool isEmpty = false;
@override
void initState() {
super.initState();
_firstController = TextEditingController(text: 'Hello');
_secondController = TextEditingController(text: 'FlutterBoot!');
_firstNode = FocusNode();
_secondNode = FocusNode();
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('Hello TextField!'), centerTitle: true),
body: Container(
padding: const EdgeInsets.symmetric(horizontal: 10),
alignment: Alignment.center,
child: Row(
children: [
Expanded(
child: TextField(
focusNode: _firstNode,
controller: _firstController,
onSubmitted: (_) {
_secondNode.requestFocus();
},
),
),
const SizedBox(width: 30),
Expanded(
child: KeyboardListener(
focusNode: FocusNode(),
onKeyEvent: (event) {
if (isEmpty &&
_secondController.text.isEmpty &&
event.logicalKey.keyLabel == 'Backspace') {
_firstNode.requestFocus();
} else if (!isEmpty &&
_secondController.text.isEmpty &&
event.logicalKey.keyLabel == 'Backspace') {
isEmpty = true;
}
},
child: TextField(
focusNode: _secondNode,
controller: _secondController,
onChanged: (_) {
isEmpty = false;
},
),
),
),
],
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment