Skip to content

Commit

Permalink
updated CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
liplum committed Sep 24, 2024
1 parent 9fe2115 commit 519fdf0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
8 changes: 3 additions & 5 deletions lib/me/index.dart
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ class _MePageState extends ConsumerState<MePage> {
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) {
Expand All @@ -94,7 +94,6 @@ class _MePageState extends ConsumerState<MePage> {
context.showSnackBar(content: i18n.copyTipOf("QQ交流群").text());
}
},
icon: const Icon(Icons.group),
),
);
}
Expand All @@ -104,8 +103,7 @@ class _MePageState extends ConsumerState<MePage> {
leading: const Icon(SimpleIcons.wechat),
title: "微信公众号".text(),
subtitle: "小应生活".text(),
trailing: PlatformIconButton(
padding: EdgeInsets.zero,
trailing: IconButton.filledTonal(
onPressed: () async {
try {
await launchUrlString(_wechatUri);
Expand Down

0 comments on commit 519fdf0

Please sign in to comment.