add some more padding

This commit is contained in:
Henry Hiles 2026-06-05 14:53:26 -04:00
commit bb6f0d4c3b
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs

View file

@ -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),
],
],
),