|
- import 'package:flutter/material.dart';
-
- final class ExportScreen extends StatelessWidget {
- const ExportScreen({super.key});
-
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- appBar: AppBar(title: const Text('Partager')),
- body: Center(
- child: Column(
- mainAxisAlignment: MainAxisAlignment.center,
- children: [
- const Icon(Icons.share, size: 64),
- const SizedBox(height: 24),
- const Text('Sélectionnez les réseaux'),
- const SizedBox(height: 32),
- FilledButton(
- onPressed: () => ScaffoldMessenger.of(context).showSnackBar(
- const SnackBar(content: Text('Partage réussi!')),
- ),
- child: const Text('Partager maintenant'),
- ),
- ],
- ),
- ),
- );
- }
- }
|