안녕하세요 이번 포스팅에서는 Flutter의 ExpansionTile로 우리가 평소 여러 앱에서 보던 정보 숨기기 / 드러내기 기능을 구현해보도록 하겠습니다. ExpansionTile 우선 코드부터 보시겠습니다. ExpansionTile( title: new Text('기본 정보', style: TextStyle( fontWeight: FontWeight.bold, fontSize: screenWidth*(16 /360), color: Colors.black ), ), initiallyExpanded: true, backgroundColor: Colors.white, children: [ Divider(height: 3,color: OptionDivideLineColor,), Container( heig..