feat(frontend): connect borrow flow to api

This commit is contained in:
SaidSoighiri94
2026-07-07 13:22:53 +02:00
parent 27171562de
commit 7aba1a930d
7 changed files with 180 additions and 21 deletions
+7 -1
View File
@@ -191,13 +191,19 @@ class ChecklistInstructions extends StatelessWidget {
/// Zone de commentaire optionnel sous une checklist.
class ChecklistCommentaire extends StatelessWidget {
const ChecklistCommentaire({super.key, this.hint = "Commentaire ou observation optionnelle..."});
const ChecklistCommentaire({
super.key,
this.controller,
this.hint = "Commentaire ou observation optionnelle...",
});
final TextEditingController? controller;
final String hint;
@override
Widget build(BuildContext context) {
return TextField(
controller: controller,
maxLines: 4,
style: GoogleFonts.titilliumWeb(fontSize: 13, color: EnsupColors.text),
decoration: InputDecoration(