add some more padding
This commit is contained in:
parent
fcdada6f3e
commit
7f12efd338
1 changed files with 8 additions and 4 deletions
|
|
@ -78,10 +78,13 @@ class MemberList extends HookConsumerWidget {
|
|||
compare: (a, b) => (b?.key ?? double.infinity)
|
||||
.compareTo(a?.key ?? double.infinity),
|
||||
)) ...[
|
||||
DividerText(
|
||||
powerLevel == null
|
||||
? "Creators"
|
||||
: "Power Level $powerLevel",
|
||||
Padding(
|
||||
padding: EdgeInsets.symmetric(horizontal: 4),
|
||||
child: DividerText(
|
||||
powerLevel == null
|
||||
? "Creators"
|
||||
: "Power Level $powerLevel",
|
||||
),
|
||||
),
|
||||
SegmentedListSection(
|
||||
children: members
|
||||
|
|
@ -123,6 +126,7 @@ class MemberList extends HookConsumerWidget {
|
|||
)
|
||||
.toList(),
|
||||
),
|
||||
SizedBox(height: 4),
|
||||
],
|
||||
],
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue