Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import 'package:health_check_app/Resources/RoundedButton.dart';
import 'package:health_check_app/Resources/TextformField.dart';
import 'package:flutter/material.dart';

class Cancer extends StatefulWidget {
class Diabetes extends StatefulWidget {
@override
_CancerState createState() => _CancerState();
_DiabetesState createState() => _DiabetesState();
}

class _CancerState extends State<Cancer> {
class _DiabetesState extends State<Diabetes> {
final _formKey = GlobalKey<FormState>();

double radius_mean,
Expand Down Expand Up @@ -417,7 +417,6 @@ class _CancerState extends State<Cancer> {
}
},
),

SizedBox(
height: 20,
),
Expand Down Expand Up @@ -578,7 +577,6 @@ class _CancerState extends State<Cancer> {
}
},
),

SizedBox(
height: 20,
),
Expand Down
8 changes: 4 additions & 4 deletions HealthCheck_App/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'Screens/settings.dart';
import 'Screens/about.dart';
import 'Screens/DiseaseDetection/diabetes_detection .dart';
import 'Screens/DiseaseDetection/heart_disease_detection .dart';
import 'Screens/DiseaseDetection/liver_disease_detection .dart';
import 'Screens/DiseaseDetection/stroke_detection .dart';
import 'Screens/DiseaseDetection/diabetes_detection.dart';
import 'Screens/DiseaseDetection/heart_disease_detection.dart';
import 'Screens/DiseaseDetection/liver_disease_detection.dart';
import 'Screens/DiseaseDetection/stroke_detection.dart';

void main() {
runApp(MyApp());
Expand Down