扑。使用主题,如何更改滚动偏移颜色?

时间:2019-12-30 06:06:04

标签: android flutter dart scroll colors

一开始我很抱歉我的英语。我不是母语人士,此外,这是我第一次使用该语言。谢谢您的理解。 这是我的意思:

my screenshot

如何在深色主题中设置除此绿色以外的滚动颜色?我做不到

下面是我的代码:

  createData(
        "Opening hours",
        clinicOne.type === "GP" ? (
          <div
            dangerouslySetInnerHTML={{
              __html: clinicOne.formattedOpeningHours
            }}
          />
        ) : (
          ""
        ),
        clinicTwo.type === "GP" ? (
          <div
            dangerouslySetInnerHTML={{
              __html: clinicTwo.formattedOpeningHours
            }}
          />
        ) : (
          ""
        )
      ),

在此先感谢您的帮助:)

2 个答案:

答案 0 :(得分:0)

GlowingOverscrollIndicator将按照以下代码为您完成工作,

GlowingOverscrollIndicator(
              axisDirection: AxisDirection.down,
              // the color you want to change in place of green
              color: Colors.yellow,
              child: Your_ListView_Widget,
)

答案 1 :(得分:0)

您需要使用accentColor property中的ThemeData class

  

小部件的前景色(旋钮,文本,过度滚动边缘效果等)。

示例代码

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'MyApp',
      theme: ThemeData(
        brightness: Brightness.light,
        //Change your color here
        accentColor: Colors.blue,
        accentColorBrightness: Brightness.light,
      ),
      home: MyHomePage(),
    );
  }
}