본문 바로가기

MobileAppDevelopment6

Flutter에서 다음 TextField로 포커스를 이동하는 방법은 무엇인가요?, How to shift focus to the next TextField in Flutter? 질문 저는 플러터를 처음 사용합니다. Form, TextFormField 위젯을 사용하여 여러 텍스트 입력란이있는 양식을 작성하고 있습니다. 나타나는 키보드에서는 "다음" (다음 필드로 포커스를 이동해야 함) 필드 작업이 아니라 "완료" 작업 (키보드를 숨기는 작업)이 표시되지 않습니다. 공식 문서에서 힌트를 찾아보았지만 직접적으로 할 수있는 것은 없었습니다. 나는 FocusNode (cookbook, api doc)에 도달했습니다. 이것은 앱에서 버튼이나 기타 작업을 사용하여 포커스를 이동시키는 메커니즘을 제공하지만 키보드에서 작동하도록하고 싶습니다. 답변 Screenshot: Just use: textInputAction: TextInputAction.next: To move the cursor to.. 2023. 5. 28.
Flutter 커스텀 카드 모양 플러터 SDK, Custom Card Shape Flutter SDK 질문 I have developed an app with GridView on Flutter. GridView items are Card and the default card shape is Rectangle with a radius of 4. I know there is shape property for Card Widget and it takes ShapeBorder class but I am unable to find how to use ShapeBorder class and customize my cards in GridView. How do I go about this? 답변 이렇게 사용할 수 있습니다. Card( shape: RoundedRectangleBorder( borderRadius: .. 2023. 5. 28.
Flutter에서 "frosted glass" 효과를 어떻게 구현하나요?, How do I do the "frosted glass" effect in Flutter? 질문 I'm writing a Flutter app, and I'd like to use/implement the "frosted glass" effect that's common on iOS. How do I do this? 저는 플러터 앱을 작성하고 있으며, iOS에서 일반적인 "프로스트드 글래스" 효과를 사용/구현하고 싶습니다. 이를 어떻게 할 수 있을까요? 답변 이 효과를 달성하려면 BackdropFilter 위젯을 사용할 수 있습니다. import 'dart:ui'; import 'package:flutter/material.dart'; void main() { runApp(new MaterialApp(home: new FrostedDemo())); } class FrostedDemo exten.. 2023. 5. 18.
Flutter 플러터 모든 라우트 제거하기, Flutter remove all routes 질문 로그인 경로로 이동하고 Navigator에서 다른 모든 경로를 제거하는 로그아웃 버튼을 개발하고 싶습니다. 문서에는 RoutePredicate를 만드는 방법이나 모든 경로를 제거하는 함수가 없는 것 같습니다. 답변 저는 다음 코드를 사용하여이를 수행 할 수있었습니다 : Navigator.of(context) .pushNamedAndRemoveUntil('/login', (Route route) => false); 이곳의 비밀은 항상 false를 반환하는 RoutePredicate를 사용하는 것입니다. (Route route) => false. 이 상황에서는 새로운 /login 경로를 제외한 모든 경로를 제거합니다. 2023. 5. 10.