Co-authored-by: Azareth-Tr <Azareth-Tr@users.noreply.github.com> Co-authored-by: MENDOZA BALLARDO GAEL RICARDO <gael-meb123@users.noreply.github.com> vistas
22 lines
559 B
Dart
22 lines
559 B
Dart
// Vista de Educación y Quiz
|
|
import 'package:flutter/material.dart';
|
|
import '../../core/theme/app_theme.dart';
|
|
|
|
class QuizScreen extends StatelessWidget {
|
|
const QuizScreen({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
backgroundColor: AppTheme.background,
|
|
appBar: AppBar(title: const Text('Educación y Quiz')),
|
|
body: const Center(
|
|
child: Text(
|
|
'Chat IA / Guía de separación offline',
|
|
style: TextStyle(color: AppTheme.textSecondary),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|