mod: tweak

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-04-01 17:16:04 +08:00
parent f70cf05870
commit f9f30a5f13
3 changed files with 4 additions and 4 deletions

View File

@@ -146,7 +146,7 @@ class _NoteListPageState extends CommonSlidePageState<NoteListPage> {
await _controller.onRefresh(); await _controller.onRefresh();
}, },
child: CustomScrollView( child: CustomScrollView(
controller: ScrollController(), controller: _controller.scrollController,
physics: const AlwaysScrollableScrollPhysics(), physics: const AlwaysScrollableScrollPhysics(),
slivers: [ slivers: [
SliverList.separated( SliverList.separated(

View File

@@ -127,7 +127,7 @@ class _AiDetailState extends CommonCollapseSlidePageState<AiDetail> {
child: Padding( child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 14), padding: const EdgeInsets.symmetric(horizontal: 14),
child: SelectableText( child: SelectableText(
'总结: ${widget.modelResult.summary}', widget.modelResult.summary!,
style: const TextStyle( style: const TextStyle(
fontSize: 15, fontSize: 15,
height: 1.5, height: 1.5,

View File

@@ -151,8 +151,8 @@ class _MediaListPanelState extends CommonSlidePageState<MediaListPanel> {
children: [ children: [
Padding( Padding(
padding: const EdgeInsets.symmetric( padding: const EdgeInsets.symmetric(
horizontal: 10, horizontal: 12,
vertical: 8, vertical: 5,
), ),
child: LayoutBuilder( child: LayoutBuilder(
builder: (context, boxConstraints) { builder: (context, boxConstraints) {