diff --git a/rescueapp/lib/start_triage_system/breathing_frequency_per_minute.dart b/rescueapp/lib/start_triage_system/breathing_frequency_per_minute.dart index 4a3746d9e5291602e607e0d600337e9cdeef05ac..436568d076aa6775a4d6d48f1e66f44a495a747a 100644 --- a/rescueapp/lib/start_triage_system/breathing_frequency_per_minute.dart +++ b/rescueapp/lib/start_triage_system/breathing_frequency_per_minute.dart @@ -1,4 +1,5 @@ import 'package:flutter/material.dart'; +import 'Circulation.dart'; class BreathingFrequencyPerMinute extends StatefulWidget { BreathingFrequencyPerMinute({Key key, this.title}) : super(key: key); @@ -112,7 +113,7 @@ class _BreathingFrequencyPerMinuteState fontWeight: FontWeight.w600, color: Colors.blue[900])), color: Colors.blue, - onPressed: null ))), + onPressed: null))), SizedBox( height: 10, ), @@ -127,7 +128,13 @@ class _BreathingFrequencyPerMinuteState fontWeight: FontWeight.w600, color: Colors.blue[900])), color: Colors.blue, - onPressed: null ))), + onPressed: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => CapillaryFillingTime()), + ); + }))), SizedBox( height: 70, ),