|
|
|
@ -7,7 +7,7 @@ class CustomRow extends StatelessWidget {
|
|
|
|
const CustomRow({
|
|
|
|
const CustomRow({
|
|
|
|
Key key,
|
|
|
|
Key key,
|
|
|
|
this.label,
|
|
|
|
this.label,
|
|
|
|
this.value, this.labelSize, this.valueSize, this.width,
|
|
|
|
this.value, this.labelSize, this.valueSize, this.width, this.isCopyable= true,
|
|
|
|
}) : super(key: key);
|
|
|
|
}) : super(key: key);
|
|
|
|
|
|
|
|
|
|
|
|
final String label;
|
|
|
|
final String label;
|
|
|
|
@ -15,6 +15,7 @@ class CustomRow extends StatelessWidget {
|
|
|
|
final double labelSize;
|
|
|
|
final double labelSize;
|
|
|
|
final double valueSize;
|
|
|
|
final double valueSize;
|
|
|
|
final double width;
|
|
|
|
final double width;
|
|
|
|
|
|
|
|
final bool isCopyable;
|
|
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
@ -35,7 +36,7 @@ class CustomRow extends StatelessWidget {
|
|
|
|
fontSize: valueSize??SizeConfig.getTextMultiplierBasedOnWidth() * 3,
|
|
|
|
fontSize: valueSize??SizeConfig.getTextMultiplierBasedOnWidth() * 3,
|
|
|
|
color: Color(0xFF2E303A),
|
|
|
|
color: Color(0xFF2E303A),
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
isCopyable: true,
|
|
|
|
isCopyable: isCopyable,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
],
|
|
|
|
);
|
|
|
|
);
|
|
|
|
|