본문 바로가기

floatingActionButton5

Flutter 플러터 - FloatingActionButton 숨기기, Flutter - Hiding FloatingActionButton 질문 Flutter에서 ListView를 아래로 스크롤할 때 FloatingActionButton을 숨기고, 위로 스크롤할 때 보여주는 내장된 방법이 있을까요? 답변 import 'package:flutter/material.dart'; import 'package:flutter/rendering.dart'; void main() { runApp(new MyApp()); } class MyApp extends StatelessWidget { // 이 위젯은 앱의 루트입니다. @override Widget build(BuildContext context) { return new MaterialApp( title: 'Flutter 데모', theme: new ThemeData( primarySwatch: C.. 2023. 9. 29.
Flutter FloatingActionButton의 크기를 변경하는 방법은 무엇인가요?, How to change the size of FloatingActionButton? 질문 저는 플러터에서 FloatingActionButton의 크기를 설정하려고 합니다. width/height를 설정하고 싶습니다. 즉, 버튼을 더 크게 만들고 싶습니다. 원형 버튼을 찾고 있었지만, 제가 찾은 것은 이것뿐이었습니다. 그래서 이것으로 작업을 시작했지만, 조금 더 큰 크기가 필요합니다. 답변 FittedBox를 사용하여 FAB를 Container 또는 SizedBox 안에 랩하고, 그 후에 너비와 높이를 변경하십시오. 예시: floatingActionButton: Container( height: 100.0, width: 100.0, child: FittedBox( child: FloatingActionButton(onPressed: () {}), ), ), 2023. 6. 24.
Flutter에서 원형 아이콘 버튼을 만드는 방법은 무엇인가요?, How to create a circle icon button in Flutter? 질문 어떻게 FloatingActionButton과 유사한 것을 만들 수 있나요? 답변 RawMaterialButton은 더 적합한 것 같습니다. RawMaterialButton( onPressed: () {}, elevation: 2.0, fillColor: Colors.white, child: Icon( Icons.pause, size: 35.0, ), padding: EdgeInsets.all(15.0), shape: CircleBorder(), ) 2023. 5. 13.
flutter 하위 트리 내에서 동일한 태그를 공유하는 여러 영웅이 있습니다., There are multiple heroes that share the same tag within a subtree 질문 저는 라우트를 사용하여 한 화면에서 다른 화면으로 이동하려고 합니다. 페이지를 이동시키기 위한 버튼을 누르면 다음과 같은 오류가 발생합니다. I/flutter ( 8790): Another exception was thrown: There are multiple heroes that share the same tag within a subtree. 다음은 코드입니다: 라우트: { '/first':(BuildContext context) =>NavigatorOne() , '/second':(BuildContext context) =>NavigatorTwo(), '/third':(BuildContext context) =>NavigatorThree(), }, Navigator.of(context).pu.. 2023. 5. 9.