본문 바로가기

style2

Flutter 플러터: 버튼에서 패딩 제거 - FlatButton, ElevatedButton, OutlinedButton, Flutter: Remove padding in buttons - FlatButton, ElevatedButton, OutlinedButton 질문 기본 마진을 제거하려고 하는데 FlatButton의 마진을 설정/재정의할 수 없습니다. Column(children: [ Container( children: [ FractionallySizedBox( widthFactor: 0.6, child: FlatButton( color: Color(0xFF00A0BE), textColor: Color(0xFFFFFFFF), child: Text('LOGIN', style: TextStyle(letterSpacing: 4.0)), shape: RoundedRectangleBorder(side: BorderSide.none)))), Container( margin: const EdgeInsets.only(top: 0.0), child: FractionallyS.. 2023. 9. 6.
Flutter 플러터에서 텍스트의 특정 부분을 클릭 가능하게 만드는 방법 [중복], Make specific parts of a text clickable in flutter [duplicate] 질문 일부 텍스트를 탭할 수 있도록 만들어 해당 텍스트에 대한 함수를 호출하고 싶습니다. 또한 탭 가능한 텍스트의 스타일을 제어하고 싶습니다. 가장 좋은 경우에는 탭 영역의 크기를 42px로 늘릴 수도 있습니다. 이미 flutter_linkify와 linkify를 살펴보았지만, 제가 원하는 것은 아닙니다. 혹시 이미 패키지로 제공되거나 플러터 라이브러리에 내장되어 있는지 궁금합니다. 답변 Use RichText with TextSpan and GestureRecognizer. With GestureRecognizer you can detect tap, double tap, long press and etc. Widget build(BuildContext context) { TextStyle default.. 2023. 8. 14.