fix dot indicator color (#1228)
Matthew Fosse committed
Dec 11, 2023 at 09:47 UTC
7ce387c13024df974c327128003853b76b339b8c
1 file changed
+4
-1
lib/src/screens/dashboard/dashboard_page.dart
+4
-1
@@ -191,7 +191,10 @@ class _DashboardPageView extends BasePage {
191
radius: 6.0,
192
dotWidth: 6.0,
193
dotHeight: 6.0,
194
- dotColor: Theme.of(context).indicatorColor,
194
+ dotColor: Theme.of(context)
195
+ .extension<DashboardPageTheme>()!
196
+ .indicatorDotTheme
197
+ .indicatorColor,
198
activeDotColor: Theme.of(context)
199
.extension<DashboardPageTheme>()!
200
.indicatorDotTheme