ente/lib/ui/search_page.dart

26 lines
581 B
Dart
Raw Normal View History

2020-04-05 08:31:01 +00:00
import 'package:flutter/material.dart';
2020-06-06 11:38:11 +00:00
import 'package:photos/ui/location_search_widget.dart';
2020-04-05 08:31:01 +00:00
2020-06-03 13:18:55 +00:00
class SearchPage extends StatefulWidget {
@override
_SearchPageState createState() => _SearchPageState();
}
class _SearchPageState extends State<SearchPage> {
2020-04-05 08:31:01 +00:00
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
2020-06-06 11:38:11 +00:00
title: LocationSearchWidget(),
2020-04-05 08:31:01 +00:00
actions: <Widget>[
IconButton(
icon: Icon(Icons.search),
onPressed: () {},
)
],
),
2020-10-28 23:41:43 +00:00
body: Container(),
2020-04-05 14:00:44 +00:00
);
2020-04-05 12:22:38 +00:00
}
2020-04-05 08:31:01 +00:00
}