Flutter2.44 Flutter 플러터에서 SnackBar를 표시합니다., Display SnackBar in Flutter 질문 Flutter 내에서 간단한 SnackBar를 표시하고 싶습니다. 이를 위해 애플리케이션은 MaterialApp을 사용하여 MyHomePage라는 Stateful 위젯의 새 인스턴스를 생성합니다. showSnackBar() 메서드에서 SnackBar를 표시하려고 시도했지만, The method showSnackBar was called on null 오류가 발생합니다. 이 코드에 문제가 무엇인가요? class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return new MaterialApp( title: 'Flutter', theme: new ThemeData( primarySwatch: Colors.. 2023. 8. 14. Flutter 플러터에서 우측 테두리가 있는 둥근 모서리 카드 위젯, Rounded corner Card Widget with right border in flutter 질문 나는 다음과 같은 카드를 만들어야 합니다: 원하는 UI를 달성하기 위해 아래 코드를 작성했지만, 기대한 대로 작동하지 않았습니다. Card( elevation: 5, shape: RoundedRectangleBorder( borderRadius: BorderRadius.only( bottomRight: Radius.circular(10), topRight: Radius.circular(10)), side: BorderSide(width: 5, color: Colors.green)), child: ListTile(), ) 위의 코드는 다음을 생성했습니다: 그러나 아래 코드를 사용하면: Card( elevation: 5, shape: Border(right: BorderSide(color: Colors.. 2023. 8. 14. 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. Flutter 플러터에서 드롭다운 버튼의 너비를 전체 너비로 조정하고 드롭다운 화살표 아이콘을 조정합니다., Full width DropdownButton with adjust dropdown arrow icon in Flutter 질문 Flutter에서는 전체 너비로 DropdownButton을 추가하고 드롭다운 화살표 아이콘도 조정해야 했습니다. 그러나 많은 시도를 해봤지만 너비가 전체로 확장되지 않았습니다. DropdownButton에 대한 코드는 다음과 같습니다: new Expanded( child: new Column( children: [ new DropdownButton( items: [ new DropdownMenuItem(child: new Text("Abc")), new DropdownMenuItem(child: new Text("Xyz")), ], hint: new Text("도시 선택"), onChanged: null ) ] ), flex: 1, ) 답변 Just adding isExpanded:true to .. 2023. 8. 12. 이전 1 ··· 6 7 8 9 10 11 다음