You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fluffychat/lib/pangea/toolbar/widgets/message_mode_locked_card.dart

33 lines
979 B
Dart

import 'package:flutter/material.dart';
import 'package:fluffychat/pangea/toolbar/widgets/message_selection_overlay.dart';
class MessageModeLockedCard extends StatelessWidget {
final MessageOverlayController controller;
const MessageModeLockedCard({super.key, required this.controller});
@override
Widget build(BuildContext context) {
return Column(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.center,
mainAxisSize: MainAxisSize.max,
children: [
Icon(
Icons.lock_outline,
size: 40,
color: Theme.of(context).colorScheme.primary,
),
// if (!InstructionsEnum.completeActivitiesToUnlock.isToggledOff) ...[
// const SizedBox(height: 8),
// const InstructionsInlineTooltip(
// instructionsEnum: InstructionsEnum.completeActivitiesToUnlock,
// bold: true,
// ),
// ],
],
);
}
}