Light theme
This commit is contained in:
parent
dcdbc4eda2
commit
d09f9f5e14
|
|
@ -36,7 +36,7 @@ class ActionFlatButton extends StatelessWidget {
|
||||||
return FlatButton(
|
return FlatButton(
|
||||||
child: Text(
|
child: Text(
|
||||||
tooltip,
|
tooltip,
|
||||||
style: TextStyle(color: Colors.white),
|
//style: TextStyle(color: Colors.white),
|
||||||
),
|
),
|
||||||
onPressed: onPressed,
|
onPressed: onPressed,
|
||||||
);
|
);
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ class EditIconButton extends StatelessWidget {
|
||||||
return FlatButton(
|
return FlatButton(
|
||||||
child: Text(
|
child: Text(
|
||||||
localization.edit,
|
localization.edit,
|
||||||
style: TextStyle(color: Colors.white),
|
//style: TextStyle(color: Colors.white),
|
||||||
),
|
),
|
||||||
onPressed: onPressed,
|
onPressed: onPressed,
|
||||||
);
|
);
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@ class SaveCancelButtons extends StatelessWidget {
|
||||||
return FlatButton(
|
return FlatButton(
|
||||||
child: Text(
|
child: Text(
|
||||||
cancelLabel ?? localization.cancel,
|
cancelLabel ?? localization.cancel,
|
||||||
style: TextStyle(color: Colors.white),
|
//style: TextStyle(color: Colors.white),
|
||||||
),
|
),
|
||||||
onPressed: () => onCancelPressed(context),
|
onPressed: () => onCancelPressed(context),
|
||||||
);
|
);
|
||||||
|
|
|
||||||
|
|
@ -63,7 +63,7 @@ class HistoryDrawer extends StatelessWidget {
|
||||||
FlatButton(
|
FlatButton(
|
||||||
child: Text(
|
child: Text(
|
||||||
localization.close,
|
localization.close,
|
||||||
style: TextStyle(color: Colors.white),
|
//style: TextStyle(color: Colors.white),
|
||||||
),
|
),
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
store.dispatch(
|
store.dispatch(
|
||||||
|
|
|
||||||
|
|
@ -100,7 +100,7 @@ class _PDFScaffoldState extends State<PDFScaffold> {
|
||||||
FlatButton(
|
FlatButton(
|
||||||
child: Text(
|
child: Text(
|
||||||
localization.download,
|
localization.download,
|
||||||
style: TextStyle(color: Colors.white),
|
//style: TextStyle(color: Colors.white),
|
||||||
),
|
),
|
||||||
onPressed: _response == null
|
onPressed: _response == null
|
||||||
? null
|
? null
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue