From 519fdf0a8641c425ac515e8ccf8205d77a9b0f47 Mon Sep 17 00:00:00 2001 From: Liplum Date: Wed, 25 Sep 2024 02:39:38 +0800 Subject: [PATCH] updated CHANGELOG.md --- CHANGELOG.md | 6 ++++++ lib/me/index.dart | 8 +++----- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 92829245..4637f584 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 2.7.0 +- Introduced immersive timetable wallpaper. +- Introduced timetable palette generator from images. +- Cropping the timetable wallpaper. +- Scrolling should be more smooth in OA announcement, second class activity, and SIT YWB application. + ## 2.6.4 - Redesigned edu email inbox page and mail details page. - [Demo mode] Demo mode is supported on edu email. diff --git a/lib/me/index.dart b/lib/me/index.dart index 0112392d..da60b08b 100644 --- a/lib/me/index.dart +++ b/lib/me/index.dart @@ -78,8 +78,8 @@ class _MePageState extends ConsumerState { leading: const Icon(SimpleIcons.tencentqq), title: "QQ交流群".text(), subtitle: _qGroupNumber.text(), - trailing: PlatformIconButton( - padding: EdgeInsets.zero, + trailing: IconButton.filledTonal( + icon: const Icon(Icons.group_add), onPressed: () async { try { if (UniversalPlatform.isIOS || UniversalPlatform.isAndroid) { @@ -94,7 +94,6 @@ class _MePageState extends ConsumerState { context.showSnackBar(content: i18n.copyTipOf("QQ交流群").text()); } }, - icon: const Icon(Icons.group), ), ); } @@ -104,8 +103,7 @@ class _MePageState extends ConsumerState { leading: const Icon(SimpleIcons.wechat), title: "微信公众号".text(), subtitle: "小应生活".text(), - trailing: PlatformIconButton( - padding: EdgeInsets.zero, + trailing: IconButton.filledTonal( onPressed: () async { try { await launchUrlString(_wechatUri);