mod: icon

This commit is contained in:
bggRGjQaUbCoE
2024-08-28 17:17:57 +08:00
parent 00d13dd594
commit c7ebe92f4e
16 changed files with 53 additions and 61 deletions

View File

@@ -130,7 +130,7 @@ class VideoCardH extends StatelessWidget {
if (source == 'normal')
Positioned(
bottom: 0,
right: 10,
right: 0,
child: VideoPopupMenu(
size: 29,
iconSize: 17,

View File

@@ -181,6 +181,7 @@ class _AboutPageState extends State<AboutPage> {
context: context,
builder: (context) {
return SimpleDialog(
clipBehavior: Clip.hardEdge,
title: const Text('导入/导出设置'),
children: [
ListTile(

View File

@@ -67,11 +67,7 @@ class _FavSearchPageState extends State<FavSearchPage> {
border: InputBorder.none,
suffixIcon: IconButton(
tooltip: '清空',
icon: Icon(
Icons.clear,
size: 22,
color: Theme.of(context).colorScheme.outline,
),
icon: const Icon(Icons.clear, size: 22),
onPressed: () => _favSearchCtr.onClear(),
),
),

View File

@@ -52,7 +52,7 @@ class _FollowSearchPageState extends State<FollowSearchPage> {
IconButton(
tooltip: '搜索',
onPressed: reRequest,
icon: const Icon(CupertinoIcons.search, size: 22),
icon: const Icon(Icons.search, size: 22),
),
const SizedBox(width: 6),
],
@@ -67,11 +67,7 @@ class _FollowSearchPageState extends State<FollowSearchPage> {
border: InputBorder.none,
suffixIcon: IconButton(
tooltip: '清空',
icon: Icon(
Icons.clear,
size: 22,
color: Theme.of(context).colorScheme.outline,
),
icon: const Icon(Icons.clear, size: 22),
onPressed: () => _followSearchController.onClear(),
),
),

View File

@@ -66,11 +66,7 @@ class _HistorySearchPageState extends State<HistorySearchPage> {
border: InputBorder.none,
suffixIcon: IconButton(
tooltip: '清空',
icon: Icon(
Icons.clear,
size: 22,
color: Theme.of(context).colorScheme.outline,
),
icon: const Icon(Icons.clear, size: 22),
onPressed: () => _historySearchCtr.onClear(),
),
),

View File

@@ -82,8 +82,8 @@ class _HotPageState extends State<HotPage> with AutomaticKeepAliveClientMixin {
slivers: [
SliverPadding(
// 单列布局 EdgeInsets.zero
padding: const EdgeInsets.fromLTRB(
StyleString.safeSpace, StyleString.safeSpace - 5, 0, 0),
padding: const EdgeInsets.fromLTRB(StyleString.safeSpace,
StyleString.safeSpace - 5, StyleString.safeSpace, 0),
sliver: FutureBuilder(
future: _futureBuilderFuture,
builder: (context, snapshot) {

View File

@@ -429,7 +429,7 @@ class _MemberPageState extends State<MemberPage>
style: TextStyle(
height: 1,
fontSize: 12,
fontWeight: FontWeight.bold,
fontWeight: FontWeight.w500,
color: Theme.of(context).colorScheme.onSecondaryContainer,
),
strutStyle: const StrutStyle(

View File

@@ -56,7 +56,7 @@ class _MemberSearchPageState extends State<MemberSearchPage>
IconButton(
tooltip: '搜索',
onPressed: () => _memberSearchCtr.submit(),
icon: const Icon(CupertinoIcons.search, size: 22)),
icon: const Icon(Icons.search, size: 22)),
const SizedBox(width: 10)
],
title: Obx(
@@ -71,11 +71,7 @@ class _MemberSearchPageState extends State<MemberSearchPage>
border: InputBorder.none,
suffixIcon: IconButton(
tooltip: '清空',
icon: Icon(
Icons.clear,
size: 22,
color: Theme.of(context).colorScheme.outline,
),
icon: const Icon(Icons.clear, size: 22),
onPressed: () => _memberSearchCtr.onClear(),
),
),

View File

@@ -36,7 +36,7 @@ class SSearchController extends GetxController {
searchKeyWord.value = hintText;
}
}
historyCacheList = List<String>.from(historyWord.get('cacheList')??[]);
historyCacheList = List<String>.from(historyWord.get('cacheList') ?? []);
historyList.value = historyCacheList;
enableHotKey = setting.get(SettingBoxKey.enableHotKey, defaultValue: true);
}
@@ -55,6 +55,7 @@ class SSearchController extends GetxController {
controller.value.clear();
searchKeyWord.value = '';
searchSuggestList.value = [];
searchFocusNode.requestFocus();
} else {
Get.back();
}
@@ -64,12 +65,13 @@ class SSearchController extends GetxController {
void submit() {
// ignore: unrelated_type_equality_checks
if (searchKeyWord == '') {
if (hintText == ''){
if (hintText == '') {
return;
}
searchKeyWord.value = hintText;
}
List<String> arr = historyCacheList.where((e) => e != searchKeyWord.value).toList();
List<String> arr =
historyCacheList.where((e) => e != searchKeyWord.value).toList();
arr.insert(0, searchKeyWord.value);
historyCacheList = arr;

View File

@@ -55,7 +55,7 @@ class _SearchPageState extends State<SearchPage> with RouteAware {
IconButton(
tooltip: '搜索',
onPressed: () => _searchController.submit(),
icon: const Icon(CupertinoIcons.search, size: 22),
icon: const Icon(Icons.search, size: 22),
),
const SizedBox(width: 10)
],
@@ -71,11 +71,7 @@ class _SearchPageState extends State<SearchPage> with RouteAware {
border: InputBorder.none,
suffixIcon: IconButton(
tooltip: '清空',
icon: Icon(
Icons.clear,
size: 22,
color: Theme.of(context).colorScheme.outline,
),
icon: const Icon(Icons.clear, size: 22),
onPressed: () => _searchController.onClear(),
),
),

View File

@@ -74,7 +74,7 @@ Widget searchArticlePanel(BuildContext context, ctr, list) {
TextSpan(
text: i['text'],
style: TextStyle(
fontWeight: FontWeight.w600,
fontWeight: FontWeight.w400,
letterSpacing: 0.3,
color: i['type'] == 'em'
? Theme.of(context)

View File

@@ -114,7 +114,7 @@ class LiveContent extends StatelessWidget {
TextSpan(
text: i['text'],
style: TextStyle(
fontWeight: FontWeight.w600,
fontWeight: FontWeight.w400,
letterSpacing: 0.3,
color: i['type'] == 'em'
? Theme.of(context).colorScheme.primary

View File

@@ -1,6 +1,3 @@
import 'dart:ffi';
import 'package:flutter/cupertino.dart';
import 'package:flutter/rendering.dart';
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
@@ -8,7 +5,6 @@ import 'package:get/get.dart';
import 'package:flutter/material.dart';
import 'package:hive/hive.dart';
import 'package:PiliPalaX/common/constants.dart';
import 'package:PiliPalaX/common/widgets/http_error.dart';
import 'package:PiliPalaX/pages/mine/controller.dart';
import 'package:PiliPalaX/pages/video/detail/index.dart';
import 'package:PiliPalaX/common/widgets/network_img_layer.dart';
@@ -303,7 +299,7 @@ class _VideoInfoState extends State<VideoInfo> with TickerProviderStateMixin {
// : videoItem['title'] ?? "",
style: const TextStyle(
fontSize: 16,
fontWeight: FontWeight.w600,
fontWeight: FontWeight.w500,
),
maxLines: 2,
overflow: TextOverflow.ellipsis,
@@ -459,9 +455,7 @@ class _VideoInfoState extends State<VideoInfo> with TickerProviderStateMixin {
() => TextButton(
onPressed: () => videoIntroController.actionRelationMod(context),
style: TextButton.styleFrom(
visualDensity: VisualDensity.compact,
tapTargetSize: MaterialTapTargetSize.shrinkWrap,
padding: const EdgeInsets.only(left: 6, right: 6),
visualDensity: const VisualDensity(horizontal: -2, vertical: -3),
foregroundColor:
(videoIntroController.followStatus['attribute'] ?? 0) != 0
? t.colorScheme.outline

View File

@@ -16,7 +16,7 @@ class IntroDetail extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
color: Theme.of(context).colorScheme.background,
color: Theme.of(context).colorScheme.surface,
padding: const EdgeInsets.only(left: 14, right: 14),
height: Utils.getSheetHeight(context),
child: Column(
@@ -47,7 +47,7 @@ class IntroDetail extends StatelessWidget {
videoDetail!.title,
style: const TextStyle(
fontSize: 16,
fontWeight: FontWeight.w600,
fontWeight: FontWeight.w500,
),
),
const SizedBox(height: 6),

View File

@@ -85,7 +85,9 @@ class _RelatedVideoPanelState extends State<RelatedVideoPanel>
);
} else {
// 请求错误
return HttpError(errMsg: '出错了', fn: () {
return HttpError(
errMsg: '出错了',
fn: () {
_futureBuilder = _relatedController.queryRelatedVideo();
_futureBuilder.then((value) => setState(() {}));
});

View File

@@ -2,6 +2,7 @@ import 'dart:async';
import 'dart:io';
import 'dart:math';
import 'package:PiliPalaX/common/constants.dart';
import 'package:PiliPalaX/utils/extension.dart';
import 'package:auto_orientation/auto_orientation.dart';
import 'package:floating/floating.dart';
@@ -715,7 +716,12 @@ class _VideoDetailPageState extends State<VideoDetailPage>
videoDetailController.cid.value)),
],
SliverToBoxAdapter(
child: Padding(
padding: const EdgeInsets.only(
top: StyleString.safeSpace,
),
child: Divider(
height: 1,
indent: 12,
endIndent: 12,
color: Theme.of(context)
@@ -723,6 +729,7 @@ class _VideoDetailPageState extends State<VideoDetailPage>
.withOpacity(0.06),
),
),
),
RelatedVideoPanel(heroTag: heroTag),
],
),
@@ -817,10 +824,16 @@ class _VideoDetailPageState extends State<VideoDetailPage>
cid: videoDetailController.cid.value)),
],
SliverToBoxAdapter(
child: Padding(
padding:
const EdgeInsets.only(top: StyleString.safeSpace),
child: Divider(
height: 1,
indent: 12,
endIndent: 12,
color: Theme.of(context).dividerColor.withOpacity(0.06),
color:
Theme.of(context).dividerColor.withOpacity(0.06),
),
),
),
RelatedVideoPanel(heroTag: heroTag),