27 lines
718 B
Dart
27 lines
718 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:gap/gap.dart';
|
|
import 'package:tanami_app/features/deleteAccount/presentation/widgets/top_section.dart';
|
|
|
|
import '../widgets/bottom_section.dart';
|
|
import '../widgets/form_section.dart';
|
|
|
|
class DeleteAccountLayout extends StatelessWidget {
|
|
const DeleteAccountLayout({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
resizeToAvoidBottomInset: true,
|
|
body: SingleChildScrollView(
|
|
child: Column(
|
|
children: [
|
|
const TopSection(),
|
|
const FormSection(),
|
|
const Gap(30),
|
|
bottomSection(context),
|
|
],
|
|
),
|
|
));
|
|
}
|
|
}
|