ModernMemoires/lib/views/statistic/widget/streak_widget.dart

62 lines
1.8 KiB
Dart
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import 'package:flutter/material.dart';
class StreakWidget extends StatelessWidget {
final int dayCount;
final Color color; // Optional color parameter
const StreakWidget({
Key? key,
required this.dayCount,
this.color = Colors.white, // Default to white if not provided
}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(
padding: const EdgeInsets.symmetric(vertical: 20),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
const Text(
"Congratulations! Youre currently ",
style: TextStyle(fontSize: 24),
textAlign: TextAlign.center,
),
Flexible(
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
const Text(
"on a ",
style: TextStyle(fontSize: 24),
textAlign: TextAlign.center,
),
Container(
margin: const EdgeInsets.symmetric(vertical: 4),
padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 6),
decoration: BoxDecoration(
color: color, // Use the color provided
borderRadius: BorderRadius.circular(20),
),
child: Text(
"$dayCount days",
style: const TextStyle(
color: Colors.black,
fontSize: 26,
),
),
),
const Text(
" streak!",
style: TextStyle(fontSize: 24),
textAlign: TextAlign.center,
),
],
),
),
],
),
);
}
}