Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove message user action on user sidebar #802

Merged
merged 2 commits into from
Oct 4, 2023
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
- Handle issue where failing to retrieve image dimensions blocks post loading - contribution from @Fmstrat
- Show additional posts loading indicator on instances with taglines - contribution from @micahmo
- Improve haptic feedback when interacting with FAB - contribution from @micahmo
- Remove non-functional message user action on use sidebar

## 0.2.4 - 2023-09-20
### Added
Expand Down
26 changes: 0 additions & 26 deletions lib/user/widgets/user_sidebar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -153,32 +153,6 @@ class _UserSidebarState extends State<UserSidebar> {
),
child: Row(
children: [
Expanded(
child: ElevatedButton(
onPressed: null,
style: TextButton.styleFrom(
fixedSize: const Size.fromHeight(40),
padding: EdgeInsets.zero,
),
child: const Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(
Icons.mail_outline_rounded,
semanticLabel: 'Message User',
),
SizedBox(width: 4.0),
Text(
'Message User',
),
],
),
),
),
const SizedBox(
width: 10,
height: 8,
),
Expanded(
child: ElevatedButton(
onPressed: isLoggedIn
Expand Down
Loading