Added search

This commit is contained in:
Juan Gilsanz Polo
2024-02-24 01:08:53 +01:00
parent a11355227c
commit a2d621ba9b
20 changed files with 834 additions and 103 deletions

View File

@@ -0,0 +1,11 @@
import 'package:flutter/material.dart';
class SearchModel {
final TextEditingController searchController;
String? searchTerm;
SearchModel({
required this.searchController,
this.searchTerm = "",
});
}