64 lines
1.9 KiB
Dart
64 lines
1.9 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
|
|
class LegalPage extends StatelessWidget {
|
|
const LegalPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: Text(
|
|
'Mentions légales',
|
|
style: GoogleFonts.merienda(),
|
|
),
|
|
),
|
|
body: SingleChildScrollView(
|
|
padding: const EdgeInsets.all(16.0),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
'Éditeur',
|
|
style: GoogleFonts.merienda(
|
|
fontSize: 24,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
const SizedBox(height: 16),
|
|
Text(
|
|
'P\'titsPas est une application développée pour les collectivités locales.',
|
|
style: GoogleFonts.merienda(),
|
|
),
|
|
const SizedBox(height: 32),
|
|
Text(
|
|
'Hébergeur',
|
|
style: GoogleFonts.merienda(
|
|
fontSize: 24,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
const SizedBox(height: 16),
|
|
Text(
|
|
'Les données sont hébergées sur des serveurs sécurisés en France.',
|
|
style: GoogleFonts.merienda(),
|
|
),
|
|
const SizedBox(height: 32),
|
|
Text(
|
|
'Responsable du traitement',
|
|
style: GoogleFonts.merienda(
|
|
fontSize: 24,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
const SizedBox(height: 16),
|
|
Text(
|
|
'Le responsable du traitement des données est la collectivité locale utilisatrice de l\'application.',
|
|
style: GoogleFonts.merienda(),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
} |