47 lines
1.4 KiB
Dart
47 lines
1.4 KiB
Dart
import 'package:flutter/material.dart';
|
|
import '../../../../core/constants/colors.dart';
|
|
import 'custom_list_tile.dart';
|
|
|
|
class SupportSectionCard extends StatelessWidget {
|
|
const SupportSectionCard({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Card(
|
|
color: AppColors.cardColor,
|
|
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(10)),
|
|
elevation: 2,
|
|
child: Column(
|
|
children: [
|
|
const Padding(
|
|
padding: EdgeInsets.all(16.0),
|
|
child: Text(
|
|
'Support et Assistance',
|
|
style: TextStyle(
|
|
fontSize: 20,
|
|
fontWeight: FontWeight.bold,
|
|
color: Colors.white,
|
|
),
|
|
),
|
|
),
|
|
CustomListTile(
|
|
icon: Icons.help,
|
|
label: 'Support et Assistance',
|
|
onTap: () => print("[LOG] Accès au Support et Assistance."),
|
|
),
|
|
CustomListTile(
|
|
icon: Icons.article,
|
|
label: 'Conditions d\'utilisation',
|
|
onTap: () => print("[LOG] Accès aux conditions d'utilisation."),
|
|
),
|
|
CustomListTile(
|
|
icon: Icons.privacy_tip,
|
|
label: 'Politique de confidentialité',
|
|
onTap: () => print("[LOG] Accès à la politique de confidentialité."),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|