fix: removed useless dependencies

This commit is contained in:
Alzalia 2025-08-09 12:11:54 +02:00
parent 981dce5bfe
commit 48bcf0b1f8
10 changed files with 5 additions and 37 deletions

View file

@ -75,8 +75,6 @@ class _AddPageState extends State<AddPage> {
);
break;
case Error():
debugPrintStack();
debugPrint(result.error.toString());
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text("Erreur : ${result.error}"),

View file

@ -1,5 +1,3 @@
import 'dart:ffi';
import 'package:flutter/material.dart';
import 'package:seshat/domain/models/bal.dart';
import 'package:seshat/domain/models/book.dart';

View file

@ -23,7 +23,6 @@ class FormPopup extends StatelessWidget {
child: InkWell(
splashColor: Colors.blue.withAlpha(30),
onTap: () {
debugPrint('Card tapped.');
Navigator.of(context).pop();
showDialog(
context: context,
@ -57,7 +56,6 @@ class FormPopup extends StatelessWidget {
child: InkWell(
splashColor: Colors.blue.withAlpha(30),
onTap: () {
debugPrint('Card tapped.');
Navigator.of(context).pop();
showDialog(
context: context,

View file

@ -154,7 +154,6 @@ class _OwnerPopupState extends State<OwnerPopup> {
if (showNewOwner) {
if (_formKey.currentState!.validate()) {
_formKey.currentState!.save();
debugPrint("\n\n\n\n(1) SENDING REQUEST\n\n\n\n");
await widget.viewModel.addOwner(
firstName!,
lastName!,