Skip to content
Snippets Groups Projects
Commit ac0aff18 authored by Halim Bahar's avatar Halim Bahar
Browse files

KAT-55: Adding the import for the following page...

KAT-55: Adding the import for the following page breathing_frequency_per_minute.dart and the activation of the button JA for the navigation to the next page.
parent d2baf4fc
No related branches found
No related tags found
No related merge requests found
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'after_opening_airways.dart'; import 'after_opening_airways.dart';
import 'breathing_frequency_per_minute.dart';
class SpontaneousBreathingPresent extends StatefulWidget { class SpontaneousBreathingPresent extends StatefulWidget {
SpontaneousBreathingPresent({Key key, this.title}) : super(key: key); SpontaneousBreathingPresent({Key key, this.title}) : super(key: key);
...@@ -94,7 +95,13 @@ class _SpontaneousBreathingPresentState ...@@ -94,7 +95,13 @@ class _SpontaneousBreathingPresentState
fontWeight: FontWeight.w600, fontWeight: FontWeight.w600,
color: Colors.blue[900])), color: Colors.blue[900])),
color: Colors.blue, color: Colors.blue,
onPressed: null ))), onPressed: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => BreathingFrequencyPerMinute()),
);
} ))),
SizedBox( SizedBox(
height: 10, height: 10,
), ),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment