diff options
author | Marvin Borner | 2018-07-21 17:59:36 +0200 |
---|---|---|
committer | Marvin Borner | 2018-07-21 17:59:36 +0200 |
commit | f03f214a47a78a52d73e28a76eec78d3f10d07e5 (patch) | |
tree | eaaf280fa5b89d32018236e06e1fc22220b8fa80 /lib/globals.dart | |
parent | acc5d5e9e960db9525a4368b393cb97fab8658e7 (diff) |
Rewritten login activity
Diffstat (limited to 'lib/globals.dart')
-rw-r--r-- | lib/globals.dart | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/lib/globals.dart b/lib/globals.dart new file mode 100644 index 0000000..7195798 --- /dev/null +++ b/lib/globals.dart @@ -0,0 +1,93 @@ +library globals; + +import 'dart:async'; +import 'dart:convert'; +import 'dart:io'; +import 'package:flutter/material.dart'; + +//Variables +bool isLoggedIn = false; +String token = ""; +String domain = ""; +String apiURL = "http://192.168.0.74:8000/login"; +String error = ""; + +String id = "0"; +String firstname = ""; +String email = ""; +String avatar ="https://api.adorable.io/avatars/128/BEAM-Messenger.png"; + +class Utility { + static Future<Null> showAlertPopup( + BuildContext context, String title, String detail) async { + return showDialog<Null>( + context: context, + barrierDismissible: false, // user must tap button! + child: new AlertDialog( + title: new Text(title), + content: new SingleChildScrollView( + child: new ListBody( + children: <Widget>[ + new Text(detail), + ], + ), + ), + actions: <Widget>[ + new FlatButton( + child: new Text('Done'), + onPressed: () { + Navigator.of(context).pop(); + }, + ), + ], + ), + ); + } + + static Future<String> getData(String params) async { + var requestURL = apiURL; + requestURL = requestURL + params; +// requestURL = requestURL + "calltype=" + calltypeParm; +// requestURL = requestURL + "&mod=" + modParm; +// requestURL = requestURL + "&?action=" + actionParm; +// requestURL = requestURL + "&?param=" + paramsParm; +// requestURL = requestURL + "&?foo=" + fooParm; + print("Request URL: " + requestURL); + + var url = requestURL; + var httpClient = new HttpClient(); + String result; + try { + var request = await httpClient.getUrl(Uri.parse(url)); + var response = await request.close(); + if (response.statusCode == HttpStatus.OK) { + try { + var json = await response.transform(UTF8.decoder).join(); + result = json; + } catch (exception) { + result = 'Error Getting Data'; + } + } else { + result = + 'Error getting IP address:\nHttp status ${response.statusCode}'; + } + } catch (exception) { + result = 'Failed getting IP address'; + } + print("Result: " + result); + return result; + } + + static Widget newTextButton(String title, VoidCallback onPressed) { + return new FlatButton( + child: new Text(title, + textAlign: TextAlign.center, + style: const TextStyle( + color: Colors.black, + fontSize: 14.0, + fontFamily: "Roboto", + fontWeight: FontWeight.bold)), + onPressed: onPressed, + ); + } +} |