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,15 +21,17 @@ class CommunityTile extends StatelessWidget {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return CustomExpansionTile(
|
return Padding(
|
||||||
title: title,
|
padding: const EdgeInsets.only(left: 16.0),
|
||||||
initiallyExpanded: isExpanded,
|
child: CustomExpansionTile(
|
||||||
isSelected: isSelected,
|
title: title,
|
||||||
onExpansionChanged: (bool expanded) {
|
initiallyExpanded: isExpanded,
|
||||||
onExpansionChanged(title, expanded);
|
isSelected: isSelected,
|
||||||
},
|
onExpansionChanged: (bool expanded) {
|
||||||
onItemSelected: onItemSelected,
|
onExpansionChanged(title, expanded);
|
||||||
children: children ?? [],
|
},
|
||||||
);
|
onItemSelected: onItemSelected,
|
||||||
|
children: children ?? [],
|
||||||
|
));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user