* feat(lemma_emoji_row): vocab assignment and some reading assistance tweaks * generated --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
32 lines
979 B
Dart
32 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,
|
|
// ),
|
|
// ],
|
|
],
|
|
);
|
|
}
|
|
}
|