fix(UI): Set refresh indicator colour to accent colour (#454)

This commit is contained in:
Jagandeep Brar
2021-04-28 10:14:08 -05:00
committed by GitHub
parent 286f63b891
commit 0036e7e7e5
2 changed files with 4 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:dbd493a957c6bace8782075fbc1e22fafccf6cf2780a5f0880835ce4aa0ebaa9
size 44027413

View File

@@ -9,6 +9,7 @@ class LunaRefreshIndicator extends RefreshIndicator {
}) : super(
key: key,
backgroundColor: Theme.of(context).primaryColor,
color: Theme.of(context).accentColor,
onRefresh: onRefresh,
child: child,
);