feedback2 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. Flutter InitState 메소드에서 비동기 데이터를 로드하는 방법이 있나요?, Is there a way to load async data on InitState method? 질문 나는 InitState 메소드에서 비동기 데이터를 로드하는 방법을 찾고 있습니다. build 메소드가 실행되기 전에 일부 데이터가 필요합니다. GoogleAuth 코드를 사용하고 있으며 Stream이 실행될 때까지 build 메소드를 실행해야합니다. 내 initState 메소드는 다음과 같습니다: @override void initState () { super.initState(); _googleSignIn.onCurrentUserChanged.listen((GoogleSignInAccount account) { setState(() { _currentUser = account; }); }); _googleSignIn.signInSilently(); } 어떤 피드백이든 감사히 받겠습니다. 답변 당신.. 2023. 5. 15. 이전 1 다음