25 lines
581 B
Dart
25 lines
581 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:photos/ui/location_search_widget.dart';
|
|
|
|
class SearchPage extends StatefulWidget {
|
|
@override
|
|
_SearchPageState createState() => _SearchPageState();
|
|
}
|
|
|
|
class _SearchPageState extends State<SearchPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: LocationSearchWidget(),
|
|
actions: <Widget>[
|
|
IconButton(
|
|
icon: Icon(Icons.search),
|
|
onPressed: () {},
|
|
)
|
|
],
|
|
),
|
|
body: Container(),
|
|
);
|
|
}
|
|
}
|