Removed fixed width

This commit is contained in:
Jacques Doeleman 2022-09-28 17:03:36 +02:00
parent cd483d77d8
commit d2a5f36bb2

View file

@ -335,24 +335,6 @@ class _FlutterFormState extends ConsumerState<FlutterForm> {
onTap: () async {
await _formController.jumpToPage(pageNumber);
},
child: Container(
width: 390,
padding: const EdgeInsets.only(
top: 18,
bottom: 16,
right: 18,
left: 27,
),
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(10),
boxShadow: [
BoxShadow(
color: const Color(0xFF000000).withOpacity(0.20),
blurRadius: 5,
),
],
),
child: Column(
children: [
Row(
@ -393,7 +375,6 @@ class _FlutterFormState extends ConsumerState<FlutterForm> {
],
),
),
),
);
}
}