64 lines
2.0 KiB
Dart
64 lines
2.0 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
|
|
class PrivacyPage extends StatelessWidget {
|
|
const PrivacyPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: Text(
|
|
'Politique de confidentialité',
|
|
style: GoogleFonts.merienda(),
|
|
),
|
|
),
|
|
body: SingleChildScrollView(
|
|
padding: const EdgeInsets.all(16.0),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
'Protection des données personnelles',
|
|
style: GoogleFonts.merienda(
|
|
fontSize: 24,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
const SizedBox(height: 16),
|
|
Text(
|
|
'P\'titsPas s\'engage à protéger vos données personnelles conformément au RGPD.',
|
|
style: GoogleFonts.merienda(),
|
|
),
|
|
const SizedBox(height: 32),
|
|
Text(
|
|
'Données collectées',
|
|
style: GoogleFonts.merienda(
|
|
fontSize: 24,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
const SizedBox(height: 16),
|
|
Text(
|
|
'Les données collectées sont nécessaires au bon fonctionnement de l\'application et à la gestion des contrats de garde d\'enfants.',
|
|
style: GoogleFonts.merienda(),
|
|
),
|
|
const SizedBox(height: 32),
|
|
Text(
|
|
'Vos droits',
|
|
style: GoogleFonts.merienda(
|
|
fontSize: 24,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
const SizedBox(height: 16),
|
|
Text(
|
|
'Vous disposez d\'un droit d\'accès, de rectification, d\'effacement et de portabilité de vos données.',
|
|
style: GoogleFonts.merienda(),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
} |