본문 바로가기

scaffold11

Flutter 항목을 탭한 후에 Scaffold의 서랍을 닫는 방법은 무엇인가요?, How to close Scaffold's drawer after an item tap? 질문 스캐폴드의 드로어에서 항목을 탭한 후에 자동으로 숨기고 싶습니다. 플러터에서 어떻게 할 수 있을까요? 답변 Navigator.pop()는 Drawer 경로를 스택에서 제거하고 닫히도록합니다. 2023. 8. 23.
Flutter 다트 / 플러터에서 다른 파일의 함수를 사용하는 방법은 무엇인가요?, How to use Functions of another File in Dart / Flutter? 질문 나는 플러터 앱에서 flutter_web_view 패키지를 사용하는 중입니다. 여러 가지 파일에서 사용하고 있으며, 앱의 어디에서든지 _launchwebview 함수를 참조하여 자체 파일을 만들고 싶습니다. 왜냐하면 작동하려면 여러 줄의 코드가 필요하기 때문입니다. 파일을 참조하고 정보를 전달하는 방법은 알지만 메서드/함수는 모르겠습니다. 다음은 클래스 코드입니다... import 'package:flutter/material.dart'; import 'package:flutter_web_view/flutter_web_view.dart'; class ShopClass extends StatefulWidget { @override ShopClassState createState() => new Sho.. 2023. 7. 17.
Flutter 투명 배경과 함께 플러터 모서리 반경, flutter corner radius with transparent background 질문 아래는 투명 배경을 가진 라운드 코너 컨테이너를 렌더링할 것으로 예상되는 코드입니다. return new Container( //padding: const EdgeInsets.all(32.0), height: 800.0, //color: const Color(0xffDC1C17), //color: const Color(0xffFFAB91), decoration: new BoxDecoration( color: Colors.green, //new Color.fromRGBO(255, 0, 0, 0.0), borderRadius: new BorderRadius.only( topLeft: const Radius.circular(40.0), topRight: const Radius.circular(40.0)).. 2023. 6. 14.
Flutter에서 메인 화면의 배경색을 어떻게 설정하나요?, How do I set the background color of my main screen in Flutter? 질문 저는 Flutter를 배우고 있습니다. 매우 기초부터 시작하고 있습니다. MaterialApp을 사용하지 않고 전체 화면의 배경색을 설정하는 좋은 방법이 무엇인가요? 지금까지 작성한 코드는 다음과 같습니다: import 'package:flutter/material.dart'; void main() { runApp(new MyApp()); } class MyApp extends StatelessWidget { // This widget is the root of your application. @override Widget build(BuildContext context) { return new Center(child: new Text("Hello, World!")); } } 제가 가진 몇 가지 질.. 2023. 5. 17.