feat(frontend): connect borrow flow to api
This commit is contained in:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user