add account delection page
This commit is contained in:
105
lib/pages/profile/account_delection_page.dart
Normal file
105
lib/pages/profile/account_delection_page.dart
Normal file
@@ -0,0 +1,105 @@
|
||||
import 'package:fcs/domain/entities/setting.dart';
|
||||
import 'package:fcs/helpers/theme.dart';
|
||||
import 'package:fcs/pages/main/model/main_model.dart';
|
||||
import 'package:fcs/pages/widgets/local_app_bar.dart';
|
||||
import 'package:fcs/pages/widgets/progress.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_markdown/flutter_markdown.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
|
||||
import '../main/model/language_model.dart';
|
||||
import '../main/util.dart';
|
||||
import '../widgets/local_text.dart';
|
||||
|
||||
class AccountDelectionPage extends StatefulWidget {
|
||||
final Function onlogout;
|
||||
const AccountDelectionPage({Key? key, required this.onlogout})
|
||||
: super(key: key);
|
||||
@override
|
||||
_AccountDelectionPageState createState() => _AccountDelectionPageState();
|
||||
}
|
||||
|
||||
class _AccountDelectionPageState extends State<AccountDelectionPage> {
|
||||
bool _isLoading = false;
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
bool isEng = Provider.of<LanguageModel>(context).isEng;
|
||||
Setting? setting = Provider.of<MainModel>(context).setting;
|
||||
String? text = isEng
|
||||
? (setting!.deactivateTextEn ?? "")
|
||||
: (setting!.deactivateTextMm ?? "");
|
||||
|
||||
return LocalProgress(
|
||||
inAsyncCall: _isLoading,
|
||||
child: Scaffold(
|
||||
appBar: LocalAppBar(
|
||||
labelKey: 'profile.delete.title',
|
||||
backgroundColor: Colors.white,
|
||||
labelColor: primaryColor,
|
||||
arrowColor: primaryColor,
|
||||
),
|
||||
body: SafeArea(
|
||||
child: ScrollConfiguration(
|
||||
behavior: const ScrollBehavior().copyWith(overscroll: false),
|
||||
child: ListView(
|
||||
padding: const EdgeInsets.all(10),
|
||||
children: [
|
||||
Markdown(
|
||||
shrinkWrap: true,
|
||||
softLineBreak: true,
|
||||
physics: const BouncingScrollPhysics(),
|
||||
data: (text).replaceAll("\\n", '\n'),
|
||||
styleSheet: MarkdownStyleSheet.fromTheme(ThemeData(
|
||||
textTheme: TextTheme(
|
||||
bodyMedium: TextStyle(
|
||||
fontSize: isEng ? 15 : 14,
|
||||
color: Colors.black87))))),
|
||||
const SizedBox(
|
||||
height: 50,
|
||||
),
|
||||
Container(
|
||||
padding: const EdgeInsets.all(20),
|
||||
child: TextButton(
|
||||
style: TextButton.styleFrom(
|
||||
foregroundColor: buttonColor,
|
||||
backgroundColor: primaryColor,
|
||||
shape: RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(30.0),
|
||||
)),
|
||||
onPressed: () {
|
||||
showConfirmDialog(context, 'delete.confirm.label',
|
||||
() {
|
||||
_deactivate();
|
||||
});
|
||||
},
|
||||
child: LocalText(context, "btn.delete",
|
||||
fontSize: 15, color: buttonColor))),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
_deactivate() async {
|
||||
try {
|
||||
setState(() {
|
||||
_isLoading = true;
|
||||
});
|
||||
|
||||
// await context.read<MainModel>().deleteAccount();
|
||||
// await widget.onlogout();
|
||||
|
||||
Navigator.pop(context, true);
|
||||
} catch (e) {
|
||||
showMsgDialog(context, "Error", e.toString());
|
||||
} finally {
|
||||
if (mounted) {
|
||||
setState(() {
|
||||
_isLoading = false;
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -24,6 +24,8 @@ import 'package:flutter_vector_icons/flutter_vector_icons.dart';
|
||||
import '../../helpers/theme.dart';
|
||||
import 'package:collection/collection.dart';
|
||||
|
||||
import 'account_delection_page.dart';
|
||||
|
||||
typedef void ProfileCallback();
|
||||
|
||||
class Profile extends StatefulWidget {
|
||||
@@ -82,8 +84,8 @@ class _ProfileState extends State<Profile> {
|
||||
labelTextKey: "profile.currency",
|
||||
iconData: FontAwesome5Regular.money_bill_alt,
|
||||
);
|
||||
final deleteacbox = DisplayText(
|
||||
labelTextKey: "profile.delete",
|
||||
final deleteAccountBox = DisplayText(
|
||||
labelTextKey: "profile.delete.title",
|
||||
iconData: MaterialCommunityIcons.delete,
|
||||
);
|
||||
|
||||
@@ -128,8 +130,11 @@ class _ProfileState extends State<Profile> {
|
||||
);
|
||||
|
||||
final logoutbutton = fcsButton(
|
||||
context, getLocalString(context, "profile.logout"),
|
||||
callack: _logout, iconData: Icons.exit_to_app);
|
||||
context, getLocalString(context, "profile.logout"), callack: () {
|
||||
showConfirmDialog(context, "profile.logout.confirm", () async {
|
||||
await _logout();
|
||||
});
|
||||
}, iconData: Icons.exit_to_app);
|
||||
|
||||
return LocalProgress(
|
||||
inAsyncCall: _isLoading,
|
||||
@@ -187,7 +192,9 @@ class _ProfileState extends State<Profile> {
|
||||
),
|
||||
Row(
|
||||
children: <Widget>[
|
||||
Expanded(child: deleteacbox,),
|
||||
Expanded(
|
||||
child: deleteAccountBox,
|
||||
),
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(right: 0),
|
||||
child: IconButton(
|
||||
@@ -196,7 +203,6 @@ class _ProfileState extends State<Profile> {
|
||||
)
|
||||
],
|
||||
),
|
||||
|
||||
getPrivilegeBox(context),
|
||||
SizedBox(height: 15),
|
||||
logoutbutton,
|
||||
@@ -359,10 +365,16 @@ class _ProfileState extends State<Profile> {
|
||||
),
|
||||
);
|
||||
}
|
||||
_editDelete() {
|
||||
Navigator.of(context)
|
||||
.push<void>(CupertinoPageRoute(builder: (context) => ProfileEdit()));
|
||||
|
||||
_editDelete() {
|
||||
Navigator.of(context).push<void>(CupertinoPageRoute(
|
||||
builder: (context) => AccountDelectionPage(
|
||||
onlogout: () {
|
||||
_logout();
|
||||
},
|
||||
)));
|
||||
}
|
||||
|
||||
_editName() {
|
||||
Navigator.of(context)
|
||||
.push<void>(CupertinoPageRoute(builder: (context) => ProfileEdit()));
|
||||
@@ -373,25 +385,23 @@ _editDelete() {
|
||||
CupertinoPageRoute(builder: (context) => ProfileCurrencyEdit()));
|
||||
}
|
||||
|
||||
_logout() {
|
||||
showConfirmDialog(context, "profile.logout.confirm", () async {
|
||||
setState(() {
|
||||
_isLoading = true;
|
||||
});
|
||||
try {
|
||||
await context.read<MainModel>().signout();
|
||||
} catch (e) {
|
||||
} finally {
|
||||
Future.delayed(Duration(seconds: 1), () {
|
||||
if (mounted) {
|
||||
setState(() {
|
||||
_isLoading = false;
|
||||
});
|
||||
}
|
||||
});
|
||||
Navigator.of(context).pushNamedAndRemoveUntil(
|
||||
"/welcome", ModalRoute.withName('/welcome'));
|
||||
}
|
||||
_logout() async {
|
||||
setState(() {
|
||||
_isLoading = true;
|
||||
});
|
||||
try {
|
||||
await context.read<MainModel>().signout();
|
||||
} catch (e) {
|
||||
} finally {
|
||||
Future.delayed(Duration(seconds: 1), () {
|
||||
if (mounted) {
|
||||
setState(() {
|
||||
_isLoading = false;
|
||||
});
|
||||
}
|
||||
});
|
||||
Navigator.of(context)
|
||||
.pushNamedAndRemoveUntil("/welcome", ModalRoute.withName('/welcome'));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user