servicios

This commit is contained in:
Juan Felipe Duarte
2023-04-27 15:56:20 -05:00
parent 69168917f2
commit b3d31d3a8d
8 changed files with 297 additions and 115 deletions
+3 -3
View File
@@ -74,7 +74,7 @@ class _CitaScreenState extends State<CitaScreen> {
text: TextSpan(
children: [
TextSpan(
text: '${nombre}, ',
text: '$nombre, ',
style: const TextStyle(
color: Colors.black,
fontWeight: FontWeight.bold,
@@ -84,7 +84,7 @@ class _CitaScreenState extends State<CitaScreen> {
TextSpan(
text:
'${DateFormat('dd MMM', 'es').format(DateTime.parse(widget.evento.day!))} ${widget.evento.range1Hour1}',
style: TextStyle(
style: const TextStyle(
color: Colors.grey,
fontSize: 16,
),
@@ -119,7 +119,7 @@ class _CitaScreenState extends State<CitaScreen> {
Text(
textAlign: TextAlign.center,
'" ${widget.evento.description} "',
style: TextStyle(
style: const TextStyle(
color: Colors.grey, fontStyle: FontStyle.italic),
)
],