Light theme

This commit is contained in:
Hillel Coren 2020-05-27 08:37:41 +03:00
parent dcdbc4eda2
commit d09f9f5e14
5 changed files with 5 additions and 5 deletions

View File

@ -36,7 +36,7 @@ class ActionFlatButton extends StatelessWidget {
return FlatButton(
child: Text(
tooltip,
style: TextStyle(color: Colors.white),
//style: TextStyle(color: Colors.white),
),
onPressed: onPressed,
);

View File

@ -21,7 +21,7 @@ class EditIconButton extends StatelessWidget {
return FlatButton(
child: Text(
localization.edit,
style: TextStyle(color: Colors.white),
//style: TextStyle(color: Colors.white),
),
onPressed: onPressed,
);

View File

@ -28,7 +28,7 @@ class SaveCancelButtons extends StatelessWidget {
return FlatButton(
child: Text(
cancelLabel ?? localization.cancel,
style: TextStyle(color: Colors.white),
//style: TextStyle(color: Colors.white),
),
onPressed: () => onCancelPressed(context),
);

View File

@ -63,7 +63,7 @@ class HistoryDrawer extends StatelessWidget {
FlatButton(
child: Text(
localization.close,
style: TextStyle(color: Colors.white),
//style: TextStyle(color: Colors.white),
),
onPressed: () {
store.dispatch(

View File

@ -100,7 +100,7 @@ class _PDFScaffoldState extends State<PDFScaffold> {
FlatButton(
child: Text(
localization.download,
style: TextStyle(color: Colors.white),
//style: TextStyle(color: Colors.white),
),
onPressed: _response == null
? null