opt `FollowingsFollowedUpper` url

Closes #1061
Closes #1062

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-08-21 14:07:18 +08:00
parent b6ce93cbd2
commit ba14e56ceb
7 changed files with 37 additions and 20 deletions

View File

@@ -171,13 +171,16 @@ class _EmotePanelState extends State<EmotePanel>
.withValues(alpha: 0.8),
bgColor: Colors.transparent,
context: context,
onPressed: () => Get.toNamed(
'/webview',
parameters: {
'url':
'https://www.bilibili.com/h5/mall/emoji-package/home?navhide=1&native.theme=1&night=${Get.isDarkMode ? 1 : 0}',
},
),
onPressed: () {
final isDark = Get.isDarkMode;
Get.toNamed(
'/webview',
parameters: {
'url':
'https://www.bilibili.com/h5/mall/emoji-package/home?navhide=1&native.theme=${isDark ? 2 : 1}&night=${isDark ? 1 : 0}',
},
);
},
icon: Icons.settings,
),
),