Skip to content
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.

Commit

Permalink
ui: fix open folder-button text contrast
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasWanke committed Mar 11, 2020
1 parent 7c1155b commit e362f12
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lib/choose_directory_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,12 @@ class ChooseDirectoryPage extends StatelessWidget {
builder: (_) => EditorPage(Directory(_pathController.text)),
));
},
child: Text('Open'),
child: Text(
'Open',
style: TextStyle(
color: Theme.of(context).primaryTextTheme.button.color,
),
),
),
],
),
Expand Down

0 comments on commit e362f12

Please sign in to comment.