Reports
This commit is contained in:
parent
c934a4d147
commit
709e012848
|
|
@ -1,4 +1,5 @@
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter/widgets.dart';
|
||||||
import 'package:flutter_redux/flutter_redux.dart';
|
import 'package:flutter_redux/flutter_redux.dart';
|
||||||
import 'package:flutter_typeahead/flutter_typeahead.dart';
|
import 'package:flutter_typeahead/flutter_typeahead.dart';
|
||||||
import 'package:invoiceninja_flutter/constants.dart';
|
import 'package:invoiceninja_flutter/constants.dart';
|
||||||
|
|
@ -671,8 +672,12 @@ class ReportBoolValue extends ReportElement {
|
||||||
@override
|
@override
|
||||||
Widget renderWidget(BuildContext context, String column) {
|
Widget renderWidget(BuildContext context, String column) {
|
||||||
final localization = AppLocalization.of(context);
|
final localization = AppLocalization.of(context);
|
||||||
return Text(
|
return SizedBox(
|
||||||
|
width: 80,
|
||||||
|
child: Text(
|
||||||
value == true ? localization.yes : localization.no,
|
value == true ? localization.yes : localization.no,
|
||||||
|
textAlign: TextAlign.center,
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue