create vital sign details

merge-requests/85/head
Mohammad ALjammal 6 years ago
parent a1463993d9
commit 33fe5e8263

@ -12,7 +12,7 @@ import 'package:http/http.dart';
*@Date:28/5/2020 *@Date:28/5/2020
*@param: url, onSuccess callBack, onFailure callBack *@param: url, onSuccess callBack, onFailure callBack
*@return: *@return:
*@desc: convert DateTime to data formatted *@desc:
*/ */
class BaseAppClient { class BaseAppClient {
static Client client = HttpInterceptor().getClient(); static Client client = HttpInterceptor().getClient();

@ -0,0 +1,13 @@
import 'package:flutter/cupertino.dart';
class VitalSignDetailsWidget extends StatefulWidget {
@override
_VitalSignDetailsWidgetState createState() => _VitalSignDetailsWidgetState();
}
class _VitalSignDetailsWidgetState extends State<VitalSignDetailsWidget> {
@override
Widget build(BuildContext context) {
return Container();
}
}

@ -277,6 +277,13 @@ packages:
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.0.7" version: "1.0.7"
flutter_svg:
dependency: "direct main"
description:
name: flutter_svg
url: "https://pub.dartlang.org"
source: hosted
version: "0.17.4"
flutter_test: flutter_test:
dependency: "direct dev" dependency: "direct dev"
description: flutter description: flutter
@ -462,6 +469,20 @@ packages:
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.6.4" version: "1.6.4"
path_drawing:
dependency: transitive
description:
name: path_drawing
url: "https://pub.dartlang.org"
source: hosted
version: "0.4.1"
path_parsing:
dependency: transitive
description:
name: path_parsing
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.4"
pedantic: pedantic:
dependency: transitive dependency: transitive
description: description:

Loading…
Cancel
Save