// ignore_for_file: use_build_context_synchronously import 'dart:convert'; import 'package:dio/dio.dart'; import 'package:flutter/material.dart'; import 'package:go_router/go_router.dart'; import 'package:namer_app/globals.dart'; Future submit(BuildContext context, String email, String password) async { final dio = Dio(); Response response; // AlertDialog alert = AlertDialog( // title: Text("Login Sukses"), // content: Text("Sukses"), // actions: [ // TextButton( // child: Text('Ok'), // onPressed: () => Navigator.of(context).pop(), // ), // ], // ); AlertDialog alert2 = AlertDialog( title: Text("Login Gagal"), content: Text("Username atau Password salah"), actions: [ TextButton( child: Text('Ok'), onPressed: () => Navigator.of(context).pop(), ), ], ); var auth = 'Basic ${base64Encode(utf8.encode('$email:$password'))}'; Map headers = { 'content-type': 'application/json', 'accept': 'application/json', 'authorization': auth }; try{ response = await dio.get("http://localhost:8080/api/v1/users", options: Options(headers: headers)); if (response.statusCode == 200){ USER_LOGIN = email; PASS_LOGIN = password; // showDialog(context: context, builder: (context) => alert); return context.go('/login/bug'); } } catch (error){ showDialog(context: context, builder: (context) => alert2); } }