score desde user

This commit is contained in:
Felipe
2024-04-17 09:55:50 -05:00
parent 141d11a141
commit afb6ff3ddd
2 changed files with 46 additions and 18 deletions
@@ -559,26 +559,31 @@ class _ProfessionalServiceScreenState extends State<ProfessionalServiceScreen> {
Card(
color: Colors.green.shade50,
child: Padding(
padding: EdgeInsets.fromLTRB(32, 56, 32, 32),
padding: const EdgeInsets.fromLTRB(32, 56, 32, 32),
child: Column(
children: [
Text(
const Text(
'Completado',
style: TextStyle(fontSize: 32, color: Colors.green),
),
SizedBox(height: 16),
const SizedBox(height: 16),
const Text(
'Califica el servicio',
style: TextStyle(fontSize: 28, color: Colors.green),
),
FilledButton(
onPressed: () {
Navigator.push(
context,
CupertinoPageRoute(
builder: (context) => ScoreScreen(
service: service,
),
onPressed: () {
Navigator.push(
context,
CupertinoPageRoute(
builder: (context) => ScoreScreen(
service: service,
),
);
},
child: Text('Calificar'))
),
);
},
child: const Text('Calificar'),
),
],
),
),