fluffychat/lib/pangea/analytics_summary/level_bar_popup.dart
2025-06-30 11:57:41 -04:00

25 lines
575 B
Dart

import 'package:flutter/material.dart';
import 'package:fluffychat/pangea/analytics_summary/level_dialog_content.dart';
class LevelBarPopup extends StatelessWidget {
const LevelBarPopup({
super.key,
});
@override
Widget build(BuildContext context) {
return Dialog(
child: ConstrainedBox(
constraints: const BoxConstraints(
maxWidth: 400,
maxHeight: 600,
),
child: ClipRRect(
borderRadius: BorderRadius.circular(20.0),
child: const LevelDialogContent(),
),
),
);
}
}