Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -75,6 +75,35 @@ class NotificationMoreDialog extends StatelessWidget {
|
||||
),
|
||||
),
|
||||
),
|
||||
Visibility(
|
||||
visible: notification.link != null && notification.link != '',
|
||||
child: Padding(
|
||||
padding: EdgeInsets.only(left: 28.0.w(), top: 8.0.h()),
|
||||
child: Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Icon(
|
||||
Icons.link,
|
||||
size: 16.0.sp(),
|
||||
color: AppColors.mainBlue,
|
||||
),
|
||||
SizedBox(width: 4.0.w()),
|
||||
Expanded(
|
||||
child: SelectableText(
|
||||
notification.link ?? '',
|
||||
style: TextStyle(
|
||||
fontSize: 13.0.sp(),
|
||||
fontWeight: FontWeight.w400,
|
||||
color: AppColors.mainBlue,
|
||||
decoration: TextDecoration.underline,
|
||||
decorationColor: AppColors.mainBlue,
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
SizedBox(height: 12.0.h()),
|
||||
Padding(
|
||||
padding: EdgeInsets.only(left: 28.0.w()),
|
||||
|
||||
Reference in New Issue
Block a user