You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

184 lines
7.3 KiB

10 months ago
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:healthcare_delivery/common/otpscreen.dart';
import 'package:healthcare_delivery/common/settings.dart';
class Login extends StatefulWidget {
const Login({super.key});
@override
State<Login> createState() => _LoginState();
}
class _LoginState extends State<Login> {
bool isObscureText=true;
TextEditingController mobileNumberController = TextEditingController();
TextEditingController passwordController = TextEditingController();
@override
void initState() {
isObscureText=true;
super.initState();
}
Future<bool> onWillPop() async {
final shouldPop = await showDialog<bool>(context: context, builder: (context) {
return AlertDialog(
title: const Text('Do you want to exit app?',
style: TextStyle(
color: primaryColor,
fontSize: 20,
)),
actionsAlignment: MainAxisAlignment.spaceBetween,
actions: [
TextButton(
onPressed: () {
SystemNavigator.pop();
},
child: const Text('Yes',
style: TextStyle(
color: primaryColor,
fontSize: 20,
)),
),
TextButton(
onPressed: () {
Navigator.of(context).pop(false);
},
child: const Text('No',
style: TextStyle(
color: primaryColor,
fontSize: 20,
)),
),
],
);
},
);
return shouldPop!;
}
@override
Widget build(BuildContext context) {
String lastInputValue="";
return WillPopScope(
onWillPop: () async => onWillPop(),
child: Scaffold(
backgroundColor: primaryColor,
10 months ago
body: Stack(
children: <Widget>[
/*Container(
10 months ago
decoration: const BoxDecoration(
image: DecorationImage(image:AssetImage("images/backgroundimage.png"), fit: BoxFit.cover,),
),
),*/
10 months ago
GestureDetector(
onTap: () {
FocusManager.instance.primaryFocus?.unfocus();
},
child: SafeArea(
child: SingleChildScrollView(
child: Padding(
padding: const EdgeInsets.all(10),
child: Column(
children: <Widget>[
SizedBox(
height:MediaQuery.of(context).size.height * .05,
10 months ago
),
Container(
//width: double.infinity,
child: Image(
image: const AssetImage('images/logo.png'),
height: MediaQuery.of(context).size.height * .25,
)),
SizedBox(
height:MediaQuery.of(context).size.height * .05,
10 months ago
),
Container(
padding: const EdgeInsets.all(0),
10 months ago
child: TextFormField(
cursorColor: Colors.white,
10 months ago
controller: mobileNumberController,
keyboardType: TextInputType.number,
style: TextStyle(color: Colors.white),
10 months ago
decoration: textFormFieldDecoration(Icons.phone,'Enter MobileNumber'),
),
),
SizedBox(
height:MediaQuery.of(context).size.height * .02,
10 months ago
),
Container(
width:double.infinity,
height: MediaQuery.of(context).size.height * .05,
10 months ago
child: ElevatedButton(
style: ElevatedButton.styleFrom(
primary: buttonColors, // background
10 months ago
onPrimary: Colors.white, // foreground
),
onPressed: () async{
if (mobileNumberController.text != '') {
AppSettings.preLoaderDialog(context);
bool isOnline = await AppSettings.internetConnectivity();
if(isOnline){
var payload = new Map<String, dynamic>();
payload["mobileNumbers"] = mobileNumberController.text.toString();
bool signinStatus = await AppSettings.loginOtp(payload);
try{
if (signinStatus) {
Navigator.of(context,rootNavigator: true).pop();
await Navigator.push(
context,
MaterialPageRoute(
builder: (context) => OtpScreen(myObject:mobileNumberController.text)),
10 months ago
);
AppSettings.longSuccessToast("OTP sent Successfully");
mobileNumberController.text='';
passwordController.text='';
} else {
Navigator.of(context,rootNavigator: true).pop();
AppSettings.longFailedToast("Please enter valid phone number");
}
}
catch(exception){
Navigator.of(context,rootNavigator: true).pop();
print(exception);
}
}
else{
Navigator.of(context,rootNavigator: true).pop();
AppSettings.longFailedToast("Please Check internet");
}
}
else{
AppSettings.longFailedToast("Please enter valid details");
}
},
child: const Text('Login'),
)),
],
),
)
)),
),
],
)
),
);
}
}