You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.6 KiB
Dart
75 lines
2.6 KiB
Dart
|
|
|
|
import 'package:easy_localization/src/public_ext.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:mohem_flutter_app/api/profile_api_client.dart';
|
|
import 'package:mohem_flutter_app/classes/colors.dart';
|
|
import 'package:mohem_flutter_app/classes/utils.dart';
|
|
import 'package:mohem_flutter_app/config/routes.dart';
|
|
import 'package:mohem_flutter_app/dialogs/otp_dialog.dart';
|
|
import 'package:mohem_flutter_app/extensions/int_extensions.dart';
|
|
import 'package:mohem_flutter_app/extensions/string_extensions.dart';
|
|
import 'package:mohem_flutter_app/extensions/widget_extensions.dart';
|
|
import 'package:mohem_flutter_app/generated/locale_keys.g.dart';
|
|
import 'package:mohem_flutter_app/models/get_employee_basic_details.model.dart';
|
|
import 'package:mohem_flutter_app/models/get_employee_contacts.model.dart';
|
|
import 'package:mohem_flutter_app/ui/profile/dynamic_screens/dynamic_input_familyMembers_screen.dart';
|
|
import 'package:mohem_flutter_app/ui/profile/dynamic_screens/dynamic_input_profile_screen.dart';
|
|
import 'package:mohem_flutter_app/ui/profile/profile.dart';
|
|
import 'package:mohem_flutter_app/widgets/app_bar_widget.dart';
|
|
import 'package:mohem_flutter_app/widgets/button/default_button.dart';
|
|
|
|
class DeleteFamilyMember extends StatefulWidget {
|
|
const DeleteFamilyMember({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
_DeleteFamilyMemberState createState() => _DeleteFamilyMemberState();
|
|
}
|
|
|
|
class _DeleteFamilyMemberState extends State<DeleteFamilyMember> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBarWidget(
|
|
context,
|
|
title: "Dependents And Beneficiaries",
|
|
),
|
|
backgroundColor: MyColors.backgroundColor,
|
|
bottomSheet: footer(),
|
|
body:Column(
|
|
children: [
|
|
|
|
],
|
|
)
|
|
|
|
);
|
|
}
|
|
footer() {
|
|
return Row(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Container(
|
|
color: MyColors.gradiantEndColor,
|
|
// margin: EdgeInsets.only(left: 50,right: 20),
|
|
padding: EdgeInsets.only(left: 50,right: 50),
|
|
child: TextButton(
|
|
style: TextButton.styleFrom(
|
|
primary:MyColors.white,
|
|
onSurface: MyColors.white,
|
|
backgroundColor: MyColors.gradiantEndColor,
|
|
),
|
|
onPressed: (){},
|
|
child: Text('Next',
|
|
style: TextStyle(
|
|
fontStyle: FontStyle.normal,
|
|
fontSize: 16,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w600
|
|
),),
|
|
)
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|