Light theme
This commit is contained in:
parent
dcdbc4eda2
commit
d09f9f5e14
|
|
@ -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,
|
||||
);
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
);
|
||||
|
|
|
|||
|
|
@ -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),
|
||||
);
|
||||
|
|
|
|||
|
|
@ -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(
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue