|
|
@ -1910,7 +1910,8 @@ class ComponentDecoration extends StatelessWidget {
|
|
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Padding(
|
|
|
|
return RepaintBoundary(
|
|
|
|
|
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(vertical: 10.0),
|
|
|
|
padding: const EdgeInsets.symmetric(vertical: 10.0),
|
|
|
|
child: Column(
|
|
|
|
child: Column(
|
|
|
|
children: [
|
|
|
|
children: [
|
|
|
@ -1927,7 +1928,8 @@ class ComponentDecoration extends StatelessWidget {
|
|
|
|
],
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
ConstrainedBox(
|
|
|
|
ConstrainedBox(
|
|
|
|
constraints: const BoxConstraints.tightFor(width: widthConstraint),
|
|
|
|
constraints:
|
|
|
|
|
|
|
|
const BoxConstraints.tightFor(width: widthConstraint),
|
|
|
|
child: Card(
|
|
|
|
child: Card(
|
|
|
|
elevation: 0,
|
|
|
|
elevation: 0,
|
|
|
|
shape: RoundedRectangleBorder(
|
|
|
|
shape: RoundedRectangleBorder(
|
|
|
@ -1944,6 +1946,7 @@ class ComponentDecoration extends StatelessWidget {
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
),
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|