diff --git a/lib/pages/spaces_management/widgets/blank_community_widget.dart b/lib/pages/spaces_management/widgets/blank_community_widget.dart index d9048de8..6d224562 100644 --- a/lib/pages/spaces_management/widgets/blank_community_widget.dart +++ b/lib/pages/spaces_management/widgets/blank_community_widget.dart @@ -28,20 +28,24 @@ class BlankCommunityWidget extends StatelessWidget { child: Column( crossAxisAlignment: CrossAxisAlignment.center, // Center align the content children: [ - Container( - width: 400, // Explicitly set item width - height: 150, // Item height - decoration: ShapeDecoration( - shape: RoundedRectangleBorder( - side: BorderSide( - width: 4, - strokeAlign: BorderSide.strokeAlignOutside, - color: ColorsManager.borderColor, + Expanded( + child: AspectRatio( + aspectRatio: 2.0, + child: Container( + decoration: ShapeDecoration( + shape: RoundedRectangleBorder( + side: BorderSide( + width: 4, + strokeAlign: BorderSide.strokeAlignOutside, + color: ColorsManager.borderColor, + ), + borderRadius: BorderRadius.circular(5), + ), ), - borderRadius: BorderRadius.circular(5), ), ), ), + const SizedBox(height: 9), // Space between item and text Text('Blank', // Text below the item style: Theme.of(context).textTheme.bodyLarge?.copyWith(