Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@
- Added ability to subscribe/unsubscribe to community from long press action on posts
- Added option to hide top app bar on scroll

## Changed
- Small UI adjustments for account switcher

### Fixed
- Fixed issue where Thunder was being locked to 60Hz on 120Hz displays on Android
- Fixed issue where subscriptions list in drawer is not respecting alphabetical order
- Fixed issue where long-pressing bottom navigation account icon would not open account switcher

## 0.2.7 - 2024-01-03
## Added
Expand Down
3 changes: 2 additions & 1 deletion lib/account/utils/profiles.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ void showProfileModalSheet(BuildContext context, {bool showLogoutDialog = false}
ThunderBloc thunderBloc = context.read<ThunderBloc>();

showModalBottomSheet(
elevation: 0,
isScrollControlled: true,
context: context,
showDragHandle: true,
Expand All @@ -21,7 +22,7 @@ void showProfileModalSheet(BuildContext context, {bool showLogoutDialog = false}
BlocProvider.value(value: thunderBloc),
],
child: FractionallySizedBox(
heightFactor: 0.9,
heightFactor: 0.8,
child: ProfileModalBody(showLogoutDialog: showLogoutDialog),
),
);
Expand Down
Loading