Skip to content
Snippets Groups Projects
Commit a3d5fb64 authored by DNZ's avatar DNZ
Browse files

KAT-58: Adding the import for the following page Circulation.dart and the...

KAT-58: Adding the import for the following page Circulation.dart and the activation of the button <= 30 to navigate to to it.
parent ac0aff18
No related branches found
No related tags found
No related merge requests found
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,
),
......
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