mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-30 04:58:41 +00:00
add static2Scroll option
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
@@ -69,28 +69,26 @@ class _WhisperBlockPageState extends State<WhisperBlockPage> {
|
||||
),
|
||||
),
|
||||
Expanded(
|
||||
child: Padding(
|
||||
child: SingleChildScrollView(
|
||||
padding: const EdgeInsets.all(12),
|
||||
child: SingleChildScrollView(
|
||||
child: Wrap(
|
||||
spacing: 12,
|
||||
runSpacing: 12,
|
||||
children: response
|
||||
.map(
|
||||
(e) => SearchText(
|
||||
text: e.keyword,
|
||||
onTap: (keyword) {
|
||||
showConfirmDialog(
|
||||
context: context,
|
||||
title: '删除屏蔽词?',
|
||||
content: '该屏蔽词将不再生效',
|
||||
onConfirm: () => _controller.onRemove(e),
|
||||
);
|
||||
},
|
||||
),
|
||||
)
|
||||
.toList(),
|
||||
),
|
||||
child: Wrap(
|
||||
spacing: 12,
|
||||
runSpacing: 12,
|
||||
children: response
|
||||
.map(
|
||||
(e) => SearchText(
|
||||
text: e.keyword,
|
||||
onTap: (keyword) {
|
||||
showConfirmDialog(
|
||||
context: context,
|
||||
title: '删除屏蔽词?',
|
||||
content: '该屏蔽词将不再生效',
|
||||
onConfirm: () => _controller.onRemove(e),
|
||||
);
|
||||
},
|
||||
),
|
||||
)
|
||||
.toList(),
|
||||
),
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user