본문 바로가기

Container21

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 플러터 레이아웃 컨테이너 마진, Flutter Layout Container Margin 질문 나는 내 플러터 레이아웃에 문제가 있습니다. 나는 왼쪽과 오른쪽에 20.0의 여백이 있는 간단한 컨테이너를 가지고 있습니다. 이 컨테이너 안에 다른 컨테이너가 있습니다. 하지만 이 컨테이너는 부모 컨테이너에 왼쪽만 맞지 않습니다. 왜 이런 일이 발생하는지 모르겠습니다. 여기에 내 코드가 있습니다: @override Widget build(BuildContext context) { return new Scaffold( backgroundColor: Colors.white, body: new Container( margin: new EdgeInsets.symmetric(horizontal: 20.0), child: new Container( ) ), ); } 문제의 스크린샷 답변 왼쪽과 오른쪽 값을 사.. 2023. 8. 28.
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 플러터에서 열 너비 설정하기, Set column width in flutter 질문 I need to set a Column width in flutter, I have to do a layout with 3 sections, one should be 20% of the screen, the other one 60% and the last one 20%. I know that those 3 columns should be into a row, but I don't know a way to set the size, when I do that, the 3 columns take the same size. I will appreciate any feedback. 답변 크기를 하드 코딩하는 대신 Flex를 사용하는 것을 제안합니다. Row( children: [ Expanded( flex.. 2023. 6. 24.