Refactor Send Invitation button to use fixed width for better layout consistency
This commit is contained in:
@@ -584,7 +584,9 @@ class _OrganizationSettingsDialogState
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(height: 16),
|
const SizedBox(height: 16),
|
||||||
ModernGlassButton(
|
SizedBox(
|
||||||
|
width: 120,
|
||||||
|
child: ModernGlassButton(
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
if (_canManage) {
|
if (_canManage) {
|
||||||
final username = usernameController.text.trim();
|
final username = usernameController.text.trim();
|
||||||
@@ -604,6 +606,7 @@ class _OrganizationSettingsDialogState
|
|||||||
},
|
},
|
||||||
child: const Text('Send Invitation'),
|
child: const Text('Send Invitation'),
|
||||||
),
|
),
|
||||||
|
),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user