101 lines
3.2 KiB
Dart
101 lines
3.2 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:go_router/go_router.dart';
|
|
import 'package:goatagent/auth.dart';
|
|
import 'package:goatagent/screens/about.dart';
|
|
import 'package:goatagent/widgets/name_card.dart';
|
|
|
|
class AccountScreen extends StatefulWidget {
|
|
const AccountScreen({super.key});
|
|
|
|
@override
|
|
State<AccountScreen> createState() => _AccountScreenState();
|
|
}
|
|
|
|
class _AccountScreenState extends State<AccountScreen> {
|
|
bool isAuthorized = false;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
AuthGuard().isAuthorized().then((value) {
|
|
setState(() {
|
|
isAuthorized = value;
|
|
});
|
|
});
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
body: SafeArea(
|
|
child: Padding(
|
|
padding: const EdgeInsets.symmetric(vertical: 5, horizontal: 20),
|
|
child: Column(children: [
|
|
Padding(
|
|
padding: const EdgeInsets.only(top: 20),
|
|
child: NameCard(
|
|
onLogin: () async {
|
|
await AuthGuard().login(context);
|
|
var authorized = await AuthGuard().isAuthorized();
|
|
setState(() {
|
|
isAuthorized = authorized;
|
|
});
|
|
},
|
|
),
|
|
),
|
|
Padding(
|
|
padding: const EdgeInsets.only(top: 5),
|
|
child: Wrap(
|
|
spacing: 5,
|
|
children: [
|
|
FutureBuilder(
|
|
future: AuthGuard().isAuthorized(),
|
|
builder: (BuildContext context, AsyncSnapshot<bool> snapshot) {
|
|
if (snapshot.hasData && snapshot.data == true) {
|
|
return Card(
|
|
elevation: 0,
|
|
child: InkWell(
|
|
splashColor: Colors.indigo.withAlpha(30),
|
|
onTap: () async {
|
|
AuthGuard().logout();
|
|
var authorized = await AuthGuard().isAuthorized();
|
|
setState(() {
|
|
isAuthorized = authorized;
|
|
});
|
|
},
|
|
child: const ListTile(
|
|
leading: Icon(Icons.logout),
|
|
title: Text('Logout'),
|
|
),
|
|
),
|
|
);
|
|
} else {
|
|
return Container();
|
|
}
|
|
},
|
|
),
|
|
Card(
|
|
elevation: 0,
|
|
child: InkWell(
|
|
splashColor: Colors.indigo.withAlpha(30),
|
|
onTap: () {
|
|
Navigator.push(context, MaterialPageRoute(
|
|
builder: (context) => const AboutScreen(),
|
|
));
|
|
},
|
|
child: const ListTile(
|
|
leading: Icon(Icons.info_outline),
|
|
title: Text('About'),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
]),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|