Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-01-23 19:50:11 +08:00
parent 7eaf05839a
commit 0ab07a713e
22 changed files with 443 additions and 470 deletions

View File

@@ -104,11 +104,11 @@ class _SharePanelState extends State<SharePanel> {
children: [
Expanded(
child: SelfSizedHorizontalList(
gapSize: 10,
padding: .zero,
itemCount: _userList.length,
controller: _scrollController,
padding: EdgeInsets.zero,
childBuilder: (index) {
separatorBuilder: (_, _) => const SizedBox(width: 10),
itemBuilder: (context, index) {
final item = _userList[index];
return Builder(
builder: (context) {