55310068ea
Complies to flutter/dart 'pedantic' coding standards (their name, not mine)
17 lines
547 B
Dart
17 lines
547 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:local_spend/common/apifunctions/request_logout_api.dart';
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
|
|
|
void logout(context) {
|
|
requestLogoutAPI(context);
|
|
Navigator.of(context).pushReplacementNamed('/LoginPage');
|
|
_clearLoginDetails();
|
|
}
|
|
|
|
void _clearLoginDetails() async {
|
|
SharedPreferences preferences = await SharedPreferences.getInstance();
|
|
|
|
await preferences.setString('username', "");
|
|
await preferences.setString('password', "");
|
|
print("details cleared");
|
|
}
|