Flutter397 Flutter 확장 위젯은 Flex 위젯 내부에 배치되어야 합니다., Expanded widgets must be placed inside Flex widgets 질문 플러터를 처음 사용해봐서 아래 코드에 무슨 문제가 있는지 알려주실 수 있는 분이 계신가요 class GamePage extends StatelessWidget { int _row; int _column; GamePage(this._row,this._column); @override Widget build(BuildContext context) { return new Material( color: Colors.deepPurpleAccent, child:new Expanded( child:new GridView.count(crossAxisCount: _column,children: new List.generate(_row*_column, (index) { return new Center( child: .. 2023. 9. 7. 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. Flutter 플러터에서 Image.network 에러(404 또는 잘못된 URL과 같은)를 어떻게 처리할 수 있나요?, Flutter how to handle Image.network error (like 404 or wrong url) 질문 URL이 잘못되었거나 대상이 404로 이동하는 경우 Image.network를 어떻게 처리해야 합니까? 예를 들어 다음을 시도해 보세요. Image.network('https://image.tmdb.org/t/p/w92') 답변 나는 errorBuilder를 사용하여 404와 관련된 네트워크 이미지 문제를 처리했습니다. Image.network('이미지 URL...', errorBuilder: (BuildContext context, Object exception, StackTrace stackTrace) { return Text('에러 위젯...'); }, ), errorBuilder 속성 2023. 9. 7. Flutter 리딩과 타이틀 사이에서 ListTile의 패딩을 제거하세요., Remove padding from ListTile between leading and title 질문 I need to remove some padding between leading Widget and title Widget in a ListTile. It has too much blank spaces. Is there a way to do that? The code that I am using for that is this: ListTile _getActionMenu(String text, IconData icon, Function() onTap) { return new ListTile( leading: new Icon(icon), title: new Text(text), onTap: onTap, ); } 리스트 타일에서 leading 위젯과 title 위젯 사이의 일부 패딩을 제거해야합니다. .. 2023. 9. 7. 이전 1 ··· 27 28 29 30 31 32 33 ··· 100 다음