add some more padding

This commit is contained in:
Henry Hiles 2026-06-05 14:53:26 -04:00
commit 7f12efd338
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) compare: (a, b) => (b?.key ?? double.infinity)
.compareTo(a?.key ?? double.infinity), .compareTo(a?.key ?? double.infinity),
)) ...[ )) ...[
DividerText( Padding(
powerLevel == null padding: EdgeInsets.symmetric(horizontal: 4),
? "Creators" child: DividerText(
: "Power Level $powerLevel", powerLevel == null
? "Creators"
: "Power Level $powerLevel",
),
), ),
SegmentedListSection( SegmentedListSection(
children: members children: members
@ -123,6 +126,7 @@ class MemberList extends HookConsumerWidget {
) )
.toList(), .toList(),
), ),
SizedBox(height: 4),
], ],
], ],
), ),