mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
fix: dialog title
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
@@ -276,7 +276,10 @@ class MyApp extends StatelessWidget {
|
|||||||
refreshBackgroundColor: colorScheme.onSecondary,
|
refreshBackgroundColor: colorScheme.onSecondary,
|
||||||
),
|
),
|
||||||
dialogTheme: DialogTheme(
|
dialogTheme: DialogTheme(
|
||||||
titleTextStyle: TextStyle(fontSize: 18),
|
titleTextStyle: TextStyle(
|
||||||
|
fontSize: 18,
|
||||||
|
color: colorScheme.onSurface,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -86,7 +86,7 @@ class _FavDetailPageState extends State<FavDetailPage> {
|
|||||||
pinned: true,
|
pinned: true,
|
||||||
title: _favDetailController.enableMultiSelect.value
|
title: _favDetailController.enableMultiSelect.value
|
||||||
? Text(
|
? Text(
|
||||||
'已选择${_favDetailController.checkedCount.value}项',
|
'已选: ${_favDetailController.checkedCount.value}',
|
||||||
)
|
)
|
||||||
: Obx(
|
: Obx(
|
||||||
() => AnimatedOpacity(
|
() => AnimatedOpacity(
|
||||||
@@ -131,7 +131,7 @@ class _FavDetailPageState extends State<FavDetailPage> {
|
|||||||
mediaId: _favDetailController.mediaId,
|
mediaId: _favDetailController.mediaId,
|
||||||
),
|
),
|
||||||
child: Text(
|
child: Text(
|
||||||
'复制到',
|
'复制',
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
color: Theme.of(context)
|
color: Theme.of(context)
|
||||||
.colorScheme
|
.colorScheme
|
||||||
@@ -151,7 +151,7 @@ class _FavDetailPageState extends State<FavDetailPage> {
|
|||||||
mediaId: _favDetailController.mediaId,
|
mediaId: _favDetailController.mediaId,
|
||||||
),
|
),
|
||||||
child: Text(
|
child: Text(
|
||||||
'移动到',
|
'移动',
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
color: Theme.of(context)
|
color: Theme.of(context)
|
||||||
.colorScheme
|
.colorScheme
|
||||||
|
|||||||
@@ -103,7 +103,7 @@ class _HistoryPageState extends State<HistoryPage> {
|
|||||||
),
|
),
|
||||||
title: Obx(
|
title: Obx(
|
||||||
() => Text(
|
() => Text(
|
||||||
'已选择${_historyController.checkedCount.value}项',
|
'已选: ${_historyController.checkedCount.value}',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
actions: [
|
actions: [
|
||||||
|
|||||||
@@ -76,7 +76,7 @@ class _LaterPageState extends State<LaterPage> {
|
|||||||
),
|
),
|
||||||
title: Obx(
|
title: Obx(
|
||||||
() => Text(
|
() => Text(
|
||||||
'已选择${_laterController.checkedCount.value}项',
|
'已选: ${_laterController.checkedCount.value}',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
actions: [
|
actions: [
|
||||||
@@ -98,7 +98,7 @@ class _LaterPageState extends State<LaterPage> {
|
|||||||
mediaId: null,
|
mediaId: null,
|
||||||
),
|
),
|
||||||
child: Text(
|
child: Text(
|
||||||
'复制到',
|
'复制',
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
||||||
),
|
),
|
||||||
@@ -115,7 +115,7 @@ class _LaterPageState extends State<LaterPage> {
|
|||||||
mediaId: null,
|
mediaId: null,
|
||||||
),
|
),
|
||||||
child: Text(
|
child: Text(
|
||||||
'移动到',
|
'移动',
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
||||||
),
|
),
|
||||||
|
|||||||
Reference in New Issue
Block a user