我需要更改尾随的keyboard_down_arrow
颜色ExpansionTile
。我已经尝试将它包装在主题小部件中并设置口音、主要和图标主题,但似乎没有任何效果。
Theme(
data: Theme.of(context).copyWith(
dividerColor: Colors.transparent,
accentColor: Colors.black,
),
child: ExpansionTile(
//
title: Text("Some Text"
),
childrenPadding: EdgeInsets.symmetric(horizontal: 15),
children: [
],
),
),