diff --git a/rescueapp/lib/AfterOpeningAirways.dart b/rescueapp/lib/AfterOpeningAirways.dart index ce8568b456d6c1e3e43231225c2a68cfb294d59b..e76207a092b711c1738c079e3ffac82f3412026a 100644 --- a/rescueapp/lib/AfterOpeningAirways.dart +++ b/rescueapp/lib/AfterOpeningAirways.dart @@ -1,4 +1,3 @@ -import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; class AfterOpeningAirways extends StatefulWidget { @@ -130,13 +129,7 @@ class _AfterOpeningAirwaysState extends State<AfterOpeningAirways> { fontWeight: FontWeight.w600, color: Colors.blue[900])), color: Colors.blue, - onPressed: () { - Navigator.push( - context, - MaterialPageRoute( - builder: (context) => AfterOpeningAirways()), - ); - }))), + onPressed: () {}))), SizedBox( height: 50, ), diff --git a/rescueapp/lib/Ambulatory.dart b/rescueapp/lib/Ambulatory.dart index 60ad7fd154f1d9dc63b245665d60026dc7cad197..6dba58d7e25f8a86f51db450d37a68b3ab7d9b8a 100644 --- a/rescueapp/lib/Ambulatory.dart +++ b/rescueapp/lib/Ambulatory.dart @@ -1,4 +1,3 @@ -import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:rescueapp/SpontaneousBreathingPresent.dart'; diff --git a/rescueapp/lib/SpontaneousBreathingPresent.dart b/rescueapp/lib/SpontaneousBreathingPresent.dart index a0e207542ed08418ebba7bf2ab23b92c2d87de32..9122f27bee018fd1ad1eeba8e9d66e2a19c9a4b1 100644 --- a/rescueapp/lib/SpontaneousBreathingPresent.dart +++ b/rescueapp/lib/SpontaneousBreathingPresent.dart @@ -1,4 +1,3 @@ -import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:rescueapp/AfterOpeningAirways.dart'; diff --git a/rescueapp/lib/main.dart b/rescueapp/lib/main.dart index 5c5ed48389842ddd074234279336879d36b9c3a9..b7676ca13c91aa201631d141b79ad936f1d59400 100644 --- a/rescueapp/lib/main.dart +++ b/rescueapp/lib/main.dart @@ -1,4 +1,3 @@ -import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:rescueapp/Ambulatory.dart'; @@ -14,8 +13,7 @@ class MyApp extends StatelessWidget { theme: ThemeData( primarySwatch: Colors.blue, ), - home: MyHomePage() - ); + home: MyHomePage()); } } @@ -61,12 +59,7 @@ class MyHomePage extends StatelessWidget { child: Text('REAL', style: TextStyle(fontSize: 22, color: Colors.white)), color: Colors.red, - onPressed: () { - Navigator.push( - context, - MaterialPageRoute(builder: (context) => MyHomePage()), - ); - })), + onPressed: () {})), ), ], ),