diff --git a/rescueapp/lib/start_triage_system/spontaneous_breathing_present.dart b/rescueapp/lib/start_triage_system/spontaneous_breathing_present.dart
index 5151e5106c5f6a0d62cde2b0d6c5ebb3abe92c7f..75b3fe827f7b16d98f1ad325f908b8bca849fc32 100644
--- a/rescueapp/lib/start_triage_system/spontaneous_breathing_present.dart
+++ b/rescueapp/lib/start_triage_system/spontaneous_breathing_present.dart
@@ -1,5 +1,6 @@
 import 'package:flutter/material.dart';
 import 'after_opening_airways.dart';
+import 'breathing_frequency_per_minute.dart';
 
 class SpontaneousBreathingPresent extends StatefulWidget {
   SpontaneousBreathingPresent({Key key, this.title}) : super(key: key);
@@ -94,7 +95,13 @@ class _SpontaneousBreathingPresentState
                                 fontWeight: FontWeight.w600,
                                 color: Colors.blue[900])),
                         color: Colors.blue,
-                        onPressed: null ))),
+                        onPressed: () {
+                          Navigator.push(
+                            context,
+                            MaterialPageRoute(
+                                builder: (context) => BreathingFrequencyPerMinute()),
+                          );
+                        } ))),
             SizedBox(
               height: 10,
             ),