mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 15:17:31 +00:00
added left padding
This commit is contained in:
@ -21,7 +21,9 @@ class CommunityTile extends StatelessWidget {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return CustomExpansionTile(
|
return Padding(
|
||||||
|
padding: const EdgeInsets.only(left: 16.0),
|
||||||
|
child: CustomExpansionTile(
|
||||||
title: title,
|
title: title,
|
||||||
initiallyExpanded: isExpanded,
|
initiallyExpanded: isExpanded,
|
||||||
isSelected: isSelected,
|
isSelected: isSelected,
|
||||||
@ -30,6 +32,6 @@ class CommunityTile extends StatelessWidget {
|
|||||||
},
|
},
|
||||||
onItemSelected: onItemSelected,
|
onItemSelected: onItemSelected,
|
||||||
children: children ?? [],
|
children: children ?? [],
|
||||||
);
|
));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user