Bez popisu

detail_page.dart 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. import 'package:flutter/material.dart';
  2. class DetailPage extends StatelessWidget {
  3. final String title;
  4. final String texto;
  5. const DetailPage({
  6. super.key,
  7. required this.title,
  8. required this.texto,
  9. });
  10. @override
  11. Widget build(BuildContext context) {
  12. return Scaffold(
  13. appBar: AppBar(
  14. flexibleSpace: Padding(
  15. padding: EdgeInsets.only(top: MediaQuery.of(context).padding.top),
  16. child: Image.asset(
  17. 'assets/header_image.png',
  18. fit: BoxFit.cover,
  19. ),
  20. ),
  21. toolbarHeight: MediaQuery.of(context).size.height * 0.19,
  22. ),
  23. body: SingleChildScrollView( // Permite el desplazamiento
  24. child: Padding(
  25. padding: const EdgeInsets.all(16.0),
  26. child: Column(
  27. crossAxisAlignment: CrossAxisAlignment.center,
  28. children: [
  29. Text(
  30. title,
  31. style: const TextStyle(fontSize: 24, fontWeight: FontWeight.bold),
  32. textAlign: TextAlign.center,
  33. ),
  34. const SizedBox(height: 8),
  35. Text(
  36. texto,
  37. style: const TextStyle(fontSize: 18, color: Colors.black),
  38. textAlign: TextAlign.justify,
  39. ),
  40. ],
  41. ),
  42. ),
  43. ),
  44. );
  45. }
  46. }