전체 글81 [Flutter] Widget(8) - ListTile에서 leading, tailing에 위젯 여러개 넣는 법 ListTile을 사용하면 leading과 tailing에 손쉽게 아이콘과 같은 위젯들을 추가할 수 있다. 이런 장점때문에 UI를 그릴 때 자주 사용되게 되는데, Leading에 아이콘을 여러게 넣고 싶어지는 경우가 있을 것이다. 이를 위해 leading에 Row위젯을 사용하여 두개의 아이콘을 넣어보자. 만약 ListTile( title: Text("This is my ListTile"), trailing: Row( children: [ Icon(Icons.call), // icon-1 Icon(Icons.message), // icon-2 ], ), ) 이렇게 Row를 사용해서 Icon을 여러개 넣어주면 "Leading widget consumes entire tile width. Please use .. 2023. 12. 26. [Flutter] UI(4) - ExpansionTile, Listile 아이콘 앞에 위치시키기(animation) ExpansionTile Widget을 이용해서 ui를 만들던 중 tailing에 위치한 아이콘을 leading 위치로 옮겨서 표현해야 하는 일이 생겼다. 애니메이션 효과 없이 단순히 위치를 옮기려면 ExpansionTile의 tailing에 SizedBox()를 넣어주고, leading에 아이콘을 넣어주면 끝이나지만, 기존에 tailing이 갖고 있던 회전 에니메이션을 그대로 추가해주기 위해서는 다른 위젯들의 활용이 필요하다. 코드 class TreeView extends StatefulWidget { final String node; final List? children; final bool initiallyExpanded; const TreeView({ Key? key, required this.n.. 2023. 12. 25. [C#] InstallUtil.exe로 Windows Service 설치 시 에러 InstallUtil로 Windows Service를 설치할 때 아래와 같은 에러가 발생했다. 트랜잭트 설치를 실행하고 있습니다. 설치의 Install 단계를 시작하고 있습니다. C:\Users\202322\source\repos\TransferMailingService\TransferMailingService\bin\Release\TransferMailingService.exe 어셈블리의 진행 상황을 보려면 로그 파일 내용을 검토하십시오. 파일은 C:\Users\202322\source\repos\TransferMailingService\TransferMailingService\bin\Release\TransferMailingService.InstallLog 위치에 있습니다. 어셈블리 'C:\Users.. 2023. 12. 22. [Flutter] The parameter can’t have a value of ‘null’ because of its type in Dart 에러 해결 플러터에서 새로운 위젯이나 함수를 만들었을 때 `The parameter can’t have a value of ‘null’ because of its type in Dart`에러가 발생하는 것을 종종 볼 수 있다. 이 메세지를 번역해보면 `다트에서는 파라미터로 null을 가질 수 없다`는 것이다. 다트에서 파라미터로 null을 가질 수 없는 이유는 null safety가 활성화 되어있기 때문이다. non-nullable 인자와 key는 null 이 될 수 없다. 함수와 생성자를 통해 null 값이 아님이 확인이 되어야 null safety를 통과할 수 있다. class Header extends StatelessWidget { const Header({ Key key, }) : super(key: ke.. 2023. 12. 21. 이전 1 ··· 10 11 12 13 14 15 16 ··· 21 다음