Skip to content

Commit

Permalink
small theme fix
Browse files Browse the repository at this point in the history
  • Loading branch information
redsolver committed Oct 2, 2022
1 parent 894225c commit 2224c5c
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
16 changes: 16 additions & 0 deletions lib/view/browse.dart
Original file line number Diff line number Diff line change
Expand Up @@ -759,6 +759,10 @@ class _BrowseViewState extends State<BrowseView> {
MaterialStateProperty.all(
Colors.black,
),
foregroundColor:
MaterialStateProperty.all(
Colors.white,
),
),
child: Text(
'Run metadata assistant',
Expand Down Expand Up @@ -841,6 +845,10 @@ class _BrowseViewState extends State<BrowseView> {
MaterialStateProperty.all(
Colors.black,
),
foregroundColor:
MaterialStateProperty.all(
Colors.white,
),
),
child: Text(
'Add to your SkyFS',
Expand Down Expand Up @@ -910,6 +918,10 @@ class _BrowseViewState extends State<BrowseView> {
MaterialStateProperty.all(
Colors.black,
),
foregroundColor:
MaterialStateProperty.all(
Colors.white,
),
),
child: Text(
'Show share link',
Expand Down Expand Up @@ -948,6 +960,10 @@ class _BrowseViewState extends State<BrowseView> {
MaterialStateProperty.all(
Colors.black,
),
foregroundColor:
MaterialStateProperty.all(
Colors.white,
),
),
child: Text(
'Show share link',
Expand Down
12 changes: 12 additions & 0 deletions lib/view/sidebar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -524,6 +524,9 @@ MimeType=x-scheme-handler/vup;
backgroundColor: MaterialStateProperty.all(
Colors.black,
),
foregroundColor: MaterialStateProperty.all(
Colors.white,
),
),
child: Text(
'Choose a portal',
Expand Down Expand Up @@ -803,6 +806,9 @@ MimeType=x-scheme-handler/vup;
backgroundColor: MaterialStateProperty.all(
Colors.black,
),
foregroundColor: MaterialStateProperty.all(
Colors.white,
),
),
onPressed: () async {
showLoadingDialog(
Expand Down Expand Up @@ -856,6 +862,9 @@ MimeType=x-scheme-handler/vup;
backgroundColor: MaterialStateProperty.all(
Colors.black,
),
foregroundColor: MaterialStateProperty.all(
Colors.white,
),
),
onPressed: () async {
showLoadingDialog(
Expand Down Expand Up @@ -904,6 +913,9 @@ MimeType=x-scheme-handler/vup;
backgroundColor: MaterialStateProperty.all(
Colors.black,
),
foregroundColor: MaterialStateProperty.all(
Colors.white,
),
),
onPressed: () async {
showLoadingDialog(
Expand Down

0 comments on commit 2224c5c

Please sign in to comment.