FlutterWidget2.2 Flutter OutlinedButton 테두리 색상을 어떻게 변경하나요?, How to change OutlinedButton border color? 질문 플러터 위젯, 저는 BorderSide(color : Colors.blue)을 사용하여 OutlineButton의 테두리 색상을 변경해 보았습니다. 테두리 색상을 어떤 색상으로 설정하더라도 OutlineButton은 항상 회색 테두리를 가지고 있지만 너비 변경은 적용됩니다. OutlineButton의 테두리 선 색상을 어떻게 변경할 수 있을까요? class OutlineButtonWidget extends StatelessWidget { @override Widget build(BuildContext context) { return Center( child: OutlineButton( onPressed: null, borderSide: BorderSide( width: 5.0, color: Colo.. 2023. 12. 11. Flutter 오른쪽에 Drawer 위젯을 배치하는 방법, How to place Drawer widget on the right 질문 오른쪽에 Drawer 위젯을 배치하는 방법입니다. 또한 앱바의 양쪽에 두 개의 Drawer 위젯을 배치할 수도 있습니다. Widget build(BuildContext context){ return Scaffold( drawer: Drawer( child: ListView( children: [ ListTile( leading: Icon(Icons.shopping_cart), title: Text('결제'), onTap: (){ Navigator.pushNamed(context, '/home'); }, ), ListTile( leading: Icon(Icons.report), title: Text('거래 내역'), onTap: (){ Navigator.pushNamed(context, '/trans.. 2023. 9. 7. 이전 1 다음