Fix sessions auth
This commit is contained in:
parent
0955e98927
commit
0f2f189f4f
1 changed files with 5 additions and 10 deletions
|
@ -12,15 +12,10 @@ class Sessions extends StatefulWidget {
|
|||
}
|
||||
|
||||
class _SessionsState extends State<Sessions> {
|
||||
var session = '';
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
|
||||
getSession().then((session) async {
|
||||
session = session;
|
||||
});
|
||||
Future<dynamic> loadSessions() async {
|
||||
var session = await getSession();
|
||||
var data = await getSessions(session);
|
||||
return data;
|
||||
}
|
||||
|
||||
@override
|
||||
|
@ -33,7 +28,7 @@ class _SessionsState extends State<Sessions> {
|
|||
backgroundColor: const Color(0xff212226),
|
||||
),
|
||||
body: FutureBuilder<dynamic>(
|
||||
future: getSessions(session),
|
||||
future: loadSessions(),
|
||||
builder: (context, snapshot) {
|
||||
if (snapshot.hasData) {
|
||||
var listSessions = snapshot.data;
|
||||
|
|
Loading…
Reference in a new issue