36 lines
842 B
Dart
36 lines
842 B
Dart
import 'package:flutter/material.dart';
|
|
import '../../../../core/theme/app_colors.dart';
|
|
|
|
class QuizPage extends StatelessWidget {
|
|
final String quizId;
|
|
|
|
const QuizPage({
|
|
super.key,
|
|
required this.quizId,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
backgroundColor: AppColors.background,
|
|
appBar: AppBar(
|
|
title: Text('Quiz $quizId'),
|
|
backgroundColor: AppColors.surface,
|
|
foregroundColor: AppColors.textPrimary,
|
|
elevation: 0,
|
|
),
|
|
body: Center(
|
|
child: Text(
|
|
'Quiz Page - ID: $quizId\nComing Soon',
|
|
style: const TextStyle(
|
|
fontSize: 24,
|
|
fontWeight: FontWeight.bold,
|
|
color: AppColors.textPrimary,
|
|
),
|
|
textAlign: TextAlign.center,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|