import 'package:flutter/material.dart'; class AmRegisterStep1Screen extends StatelessWidget { const AmRegisterStep1Screen({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('Étape 1 - Inscription AM'), ), body: const Center( child: Text('Contenu de l\'étape 1'), ), ); } }