2024-10-23 04:16:07 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
import 'package:english_learning/core/utils/styles/theme.dart';
|
|
|
|
|
|
|
|
|
|
class NoProgressCard extends StatelessWidget {
|
|
|
|
|
const NoProgressCard({super.key});
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
return Container(
|
|
|
|
|
width: double.infinity,
|
2024-12-05 09:54:20 +00:00
|
|
|
decoration: const BoxDecoration(
|
2024-10-23 04:16:07 +00:00
|
|
|
color: AppColors.whiteColor,
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|