mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-14 17:25:50 +00:00
removed width from blank container
This commit is contained in:
@ -28,9 +28,10 @@ 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
|
||||
Expanded(
|
||||
child: AspectRatio(
|
||||
aspectRatio: 2.0,
|
||||
child: Container(
|
||||
decoration: ShapeDecoration(
|
||||
shape: RoundedRectangleBorder(
|
||||
side: BorderSide(
|
||||
@ -42,6 +43,9 @@ class BlankCommunityWidget extends StatelessWidget {
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
|
||||
const SizedBox(height: 9), // Space between item and text
|
||||
Text('Blank', // Text below the item
|
||||
style: Theme.of(context).textTheme.bodyLarge?.copyWith(
|
||||
|
Reference in New Issue
Block a user