mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-09 22:57:21 +00:00
Replaced Column with ListView in SpaceDetailsForm to enhance scrolling behavior and accommodate dynamic content.
This commit is contained in:
@ -42,9 +42,8 @@ class SpaceDetailsForm extends StatelessWidget {
|
|||||||
Expanded(child: SpaceIconPicker(iconPath: space.icon)),
|
Expanded(child: SpaceIconPicker(iconPath: space.icon)),
|
||||||
Expanded(
|
Expanded(
|
||||||
flex: 2,
|
flex: 2,
|
||||||
child: Column(
|
child: ListView(
|
||||||
mainAxisSize: MainAxisSize.min,
|
shrinkWrap: true,
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
children: [
|
||||||
SpaceNameTextField(
|
SpaceNameTextField(
|
||||||
initialValue: space.spaceName,
|
initialValue: space.spaceName,
|
||||||
@ -52,7 +51,7 @@ class SpaceDetailsForm extends StatelessWidget {
|
|||||||
(subspace) => subspace.name == value,
|
(subspace) => subspace.name == value,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const Spacer(),
|
const SizedBox(height: 32),
|
||||||
SpaceSubSpacesBox(
|
SpaceSubSpacesBox(
|
||||||
subspaces: space.subspaces,
|
subspaces: space.subspaces,
|
||||||
),
|
),
|
||||||
|
Reference in New Issue
Block a user