added search page

This commit is contained in:
2026-01-14 21:58:39 +01:00
parent c0f92fac58
commit 11a43a39fa
2 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import 'package:flutter/material.dart';
class SearchPage extends StatelessWidget {
const SearchPage({super.key});
static const String routeName = '/search';
@override
Widget build(BuildContext context) {
return const Placeholder();
}
}