No Description

custom_info_card.dart 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. import 'package:flutter/material.dart';
  2. import 'detail_page.dart'; // Importa la nueva pantalla
  3. class CustomInfoCard extends StatelessWidget {
  4. final String imagePath;
  5. final String title;
  6. final String subtitle;
  7. final String texto;
  8. const CustomInfoCard({
  9. super.key,
  10. required this.imagePath,
  11. required this.title,
  12. required this.subtitle,
  13. required this.texto,
  14. });
  15. @override
  16. Widget build(BuildContext context) {
  17. return GestureDetector(
  18. onTap: () {
  19. Navigator.push(
  20. context,
  21. MaterialPageRoute(
  22. builder: (context) => DetailPage(
  23. title: title,
  24. texto: texto,
  25. ),
  26. ),
  27. );
  28. },
  29. child: SizedBox(
  30. width: double.infinity,
  31. height: 130,
  32. child: Card(
  33. margin: const EdgeInsets.symmetric(vertical: 8, horizontal: 16),
  34. shape: RoundedRectangleBorder(
  35. borderRadius: BorderRadius.circular(30),
  36. ),
  37. color: const Color.fromARGB(255, 254, 242, 221),
  38. child: Padding(
  39. padding: const EdgeInsets.only(right: 8),
  40. child: Row(
  41. children: [
  42. Container(
  43. width: 90,
  44. height: 90,
  45. decoration: BoxDecoration(
  46. color: Colors.white,
  47. borderRadius: BorderRadius.circular(36),
  48. ),
  49. child: ClipRRect(
  50. borderRadius: BorderRadius.circular(36),
  51. child: Image.asset(
  52. imagePath,
  53. fit: BoxFit.cover,
  54. width: 90,
  55. height: 90,
  56. ),
  57. ),
  58. ),
  59. const SizedBox(width: 16),
  60. Expanded(
  61. child: Column(
  62. mainAxisAlignment: MainAxisAlignment.center,
  63. crossAxisAlignment: CrossAxisAlignment.start,
  64. children: [
  65. Text(
  66. title,
  67. style: const TextStyle(
  68. fontSize: 16,
  69. fontWeight: FontWeight.bold,
  70. ),
  71. ),
  72. const SizedBox(height: 4),
  73. Text(
  74. subtitle,
  75. style: TextStyle(
  76. fontSize: 14,
  77. color: Colors.grey[600],
  78. ),
  79. ),
  80. ],
  81. ),
  82. ),
  83. ],
  84. ),
  85. ),
  86. ),
  87. ),
  88. );
  89. }
  90. }