列表视图滚动中出现的影子叫什么名字?

What is the name of the shadow that appears in the scroll of the list view?

我想更改颜色,因为默认情况下 themeData.dark() 是绿色

如果'shadow',你的意思是这个效果:

那么这个效果就叫做overscroll glow effect,要改的话需要在这个(docs)的基础上改ColorScheme.secondary。

所以它会是这样的:

Theme(
data: Theme.of(context).copyWith(
  colorScheme: ColorScheme.fromSwatch(
    accentColor: Colors.red,
  ),
),