fix button alignment
This commit is contained in:
parent
e2573ee635
commit
3538f2454c
1 changed files with 24 additions and 21 deletions
|
|
@ -238,6 +238,7 @@ class _PatientDocumentsState extends State<PatientDocuments> {
|
||||||
? EdgeInsets.symmetric(horizontal: width * 0.05)
|
? EdgeInsets.symmetric(horizontal: width * 0.05)
|
||||||
: const EdgeInsets.symmetric(horizontal: 0),
|
: const EdgeInsets.symmetric(horizontal: 0),
|
||||||
child: Column(
|
child: Column(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
children: [
|
children: [
|
||||||
MihForm(
|
MihForm(
|
||||||
formKey: _formKey,
|
formKey: _formKey,
|
||||||
|
|
@ -298,7 +299,8 @@ class _PatientDocumentsState extends State<PatientDocuments> {
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
const SizedBox(height: 20),
|
const SizedBox(height: 20),
|
||||||
MihButton(
|
Center(
|
||||||
|
child: MihButton(
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
if (_formKey.currentState!.validate()) {
|
if (_formKey.currentState!.validate()) {
|
||||||
submitDocUploadForm();
|
submitDocUploadForm();
|
||||||
|
|
@ -322,6 +324,7 @@ class _PatientDocumentsState extends State<PatientDocuments> {
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue