mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
@@ -88,32 +88,36 @@ class _UpPanelState extends State<UpPanel> {
|
|||||||
Container(
|
Container(
|
||||||
height: 90,
|
height: 90,
|
||||||
color: Theme.of(context).colorScheme.background,
|
color: Theme.of(context).colorScheme.background,
|
||||||
child: Expanded(
|
child: Row(
|
||||||
child: ListView(
|
children: [
|
||||||
scrollDirection: Axis.horizontal,
|
Expanded(
|
||||||
controller: scrollController,
|
child: ListView(
|
||||||
children: [
|
scrollDirection: Axis.horizontal,
|
||||||
const SizedBox(width: 10),
|
controller: scrollController,
|
||||||
if (liveList.isNotEmpty) ...[
|
children: [
|
||||||
for (int i = 0; i < liveList.length; i++) ...[
|
const SizedBox(width: 10),
|
||||||
upItemBuild(liveList[i], i)
|
if (liveList.isNotEmpty) ...[
|
||||||
|
for (int i = 0; i < liveList.length; i++) ...[
|
||||||
|
upItemBuild(liveList[i], i)
|
||||||
|
],
|
||||||
|
VerticalDivider(
|
||||||
|
indent: 20,
|
||||||
|
endIndent: 40,
|
||||||
|
width: 26,
|
||||||
|
color: Theme.of(context)
|
||||||
|
.colorScheme
|
||||||
|
.primary
|
||||||
|
.withOpacity(0.5),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
for (int i = 0; i < upList.length; i++) ...[
|
||||||
|
upItemBuild(upList[i], i)
|
||||||
|
],
|
||||||
|
const SizedBox(width: 10),
|
||||||
],
|
],
|
||||||
VerticalDivider(
|
),
|
||||||
indent: 20,
|
),
|
||||||
endIndent: 40,
|
],
|
||||||
width: 26,
|
|
||||||
color: Theme.of(context)
|
|
||||||
.colorScheme
|
|
||||||
.primary
|
|
||||||
.withOpacity(0.5),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
for (int i = 0; i < upList.length; i++) ...[
|
|
||||||
upItemBuild(upList[i], i)
|
|
||||||
],
|
|
||||||
const SizedBox(width: 10),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Container(
|
Container(
|
||||||
|
|||||||
Reference in New Issue
Block a user