본문 바로가기

RaisedButton2

Flutter 플러터-웹: 마우스 호버 -> 커서를 포인터로 변경, Flutter-Web: Mouse hover -> Change cursor to pointer 질문 업데이트 (2021/05/11): 플러터는 이제 네이티브로 호버 이벤트가 구현된 위젯을 가지고 있습니다. RaisedButton과 같은 위젯에는 MouseCursor와 hoverColor 또는 hoverElevation과 같은 속성이 있습니다. https://api.flutter.dev/flutter/services/MouseCursor-class.html 또한, 수락된 답변에 언급된대로 어디에서든 InkWell을 사용할 수도 있습니다. 원래 질문: 플러터 내에서 커서 모양을 어떻게 변경할 수 있을까요? Listener() 위젯을 사용하여 마우스 이벤트를 수신할 수 있다는 것은 알고 있지만, 플러터 웹에 대한 호버 이벤트에 대한 정보를 찾지 못했습니다. 아직 해결책을 찾으신 분은 계시나요? 답변 지.. 2023. 9. 22.
Flutter 버튼 너비를 부모와 일치시키는 방법은 무엇인가요?, How to make button width match parent? 질문 나는 match parent 레이아웃 너비에 너비를 설정하는 방법을 알고 싶습니다. new Container( width: 200.0, padding: const EdgeInsets.only(top: 16.0), child: new RaisedButton( child: new Text( "Submit", style: new TextStyle( color: Colors.white, ) ), colorBrightness: Brightness.dark, onPressed: () { _loginAttempt(context); }, color: Colors.blue, ), ), 나는 Expanded 위젯에 대해 약간 알고 있지만, Expanded는 양방향으로 뷰를 확장시키기 때문에 어떻게 해야할지 모릅니다... 2023. 5. 10.