Widget6.2 Flutter 다트에서 목록을 펼치는 방법은 어떻게 하나요?, How to spread a list in dart 질문 자바스크립트에서는 전개 연산자를 사용합니다: 이제 플러터에서 같은 문제가 발생합니다: Widget build(BuildContext context) { return Column( children: [ MyHeader(), _buildListOfWidgetForBody(), // 2023. 9. 29. Flutter 플러터 - AppBar가 없을 때 상태 표시줄 색상을 어떻게 설정하는 방법, Flutter - How to set status bar color when AppBar not present 질문 AppBar가 없을 때 상태 표시줄 색상을 설정하는 방법. 이렇게 시도해 봤지만 작동하지 않습니다. Widget build(BuildContext context) { SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle.dark); return new Scaffold( body: new Container( color: UniQueryColors.colorBackground, child: new ListView.builder( itemCount: 7, itemBuilder: (BuildContext context, int index){ if (index == 0){ return addTopInfoSection(); } }, ), ), ); } 출력은 .. 2023. 8. 11. 이전 1 다음