본문 바로가기

1.344

Python 하위 디렉토리에서 파일을 가져오시겠습니까?, Import a file from a subdirectory? 질문 I have a file called tester.py, located on /project. /project has a subdirectory called lib, with a file called BoxTime.py: /project/tester.py /project/lib/BoxTime.py I want to import BoxTime from tester. I have tried this: import lib.BoxTime Which resulted: Traceback (most recent call last): File "./tester.py", line 3, in import lib.BoxTime ImportError: No module named lib.BoxTime Any ideas .. 2023. 9. 8.
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.