- Framework: Flutter web - Pages: Login, inscription, dashboards - Services: API client, authentification, gestion d'état - Intégration avec backend NestJS - Dockerfile pour déploiement web
17 lines
406 B
Dart
17 lines
406 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class FindNannyScreen extends StatelessWidget {
|
|
const FindNannyScreen({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text("Trouver une nounou"),
|
|
),
|
|
body: Center(
|
|
child: const Text("Contenu de la page Trouver une nounou"),
|
|
),
|
|
);
|
|
}
|
|
} |