본문 바로가기

Values13

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 플러터에서 콘솔 메시지를 출력하는 방법이 있나요?, Is there a way to print a console message with Flutter? 질문 I'm debugging an app, but I need to know some values in the fly, I was wondering if there's a way to print a message in console like console.log using Javascript. I appreciate the help. 앱을 디버깅하고 있지만, 실시간으로 일부 값을 알아야 합니다. Javascript를 사용하여 console.log와 같이 콘솔에 메시지를 출력하는 방법이 있는지 궁금합니다. 도움을 감사히 받겠습니다. 답변 print()은 아마도 당신이 찾고 있는 것입니다. 여기에 플러터 디버깅에 대한 추가 정보가 있습니다. 2023. 8. 23.
Python 사전에서 값으로 키 가져오기, Get key by value in dictionary 질문 나는 Dictionary에서 나이를 찾아 일치하는 이름을 보여줄 함수를 만들었다: dictionary = {'george' : 16, 'amber' : 19} search_age = raw_input("나이를 입력하세요") for age in dictionary.values(): if age == search_age: name = dictionary[age] print name 나는 비교하고 나이를 찾는 방법을 알고 있지만, 그 사람의 이름을 표시하는 방법을 모르겠다. 또한, 5번째 줄 때문에 KeyError가 발생한다. 이것이 올바르지 않다는 것을 알고 있지만, 역으로 검색하는 방법을 찾을 수 없다. 답변 mydict = {'george': 16, 'amber': 19} print mydict.k.. 2023. 6. 9.
Python Pytz 시간대 목록이 있나요?, Is there a list of Pytz Timezones? 질문 I would like to know what are all the possible values for the timezone argument in the Python library pytz. How to do it? 답변 pytz.all_timezones를 사용하여 사용 가능한 모든 시간대를 나열할 수 있습니다: In [40]: import pytz In [41]: pytz.all_timezones Out[42]: ['Africa/Abidjan', 'Africa/Accra', 'Africa/Addis_Ababa', ...] pytz.common_timezones도 있습니다: In [45]: len(pytz.common_timezones) Out[45]: 403 In [46]: len(pytz.al.. 2023. 6. 6.