You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
diplomatic-quarter/lib/pages/AlHabibMedicalService/health_converter.dart

95 lines
3.0 KiB
Dart

// import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart';
// import 'package:diplomaticquarterapp/widgets/data_display/medical/medical_profile_item.dart';
// import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
// import 'package:diplomaticquarterapp/widgets/transitions/fade_page.dart';
// import 'package:flutter/material.dart';
//
// import 'health_converter/blood_sugar.dart';
//
// class HealthConverter extends StatefulWidget {
// @override
// _HealthConverterState createState() => _HealthConverterState();
// }
//
// class _HealthConverterState extends State<HealthConverter> {
// @override
// Widget build(BuildContext context) {
// return AppScaffold(
// isShowAppBar: true,
// appBarTitle: 'Health Converter',
// body: Column(
// children: [
// Container(
// width: double.infinity,
// height: 30,
// ),
// Row(
// children: [
// Expanded(
// flex: 1,
// child: InkWell(
// onTap: () {
// Navigator.push(
// context,
// FadePage(page: BloodSugar()),
// );
// },
// child: MedicalProfileItem(
// title: 'Blood',
// imagePath: 'blood_sugar_icon.png',
// subTitle: 'Sugar',
// ),
// ),
// ),
// Expanded(
// flex: 1,
// child: InkWell(
// onTap: () {
// Navigator.push(
// context,
// FadePage(
// // page: [](),
// ),
// );
// },
// child: MedicalProfileItem(
// title: 'Blood',
// imagePath: 'blood_cholesterol_icon.png',
// subTitle: 'Cholesterol',
// ),
// ),
// ),
// ],
// ),
// Row(
// children: [
// Expanded(
// flex: 1,
// child: InkWell(
// onTap: () {
// Navigator.push(
// context,
// FadePage(
// // page: [](),
// ),
// );
// },
// child: MedicalProfileItem(
// title: 'Triglycerides',
// imagePath: 'triglycerides_blood_icon.png',
// subTitle: 'Fat in blood',
// ),
// ),
// ),
// Expanded(
// flex: 1,
// child: Container(),
// ),
// ],
// )
// ],
// ),
// );
// }
// }