diff --git a/lib/ux/pages/searchPage.dart b/lib/ux/pages/searchPage.dart index 59f2556..df771cd 100644 --- a/lib/ux/pages/searchPage.dart +++ b/lib/ux/pages/searchPage.dart @@ -3,8 +3,60 @@ import 'package:flutter/material.dart'; class SearchPage extends StatelessWidget { @override Widget build(BuildContext context) { - return Container( - + return Scaffold( + body: Column( + children: [ + Container( + alignment: Alignment.center, + padding: EdgeInsets.fromLTRB(10, 0, 10, 0), + width: double.infinity, + height: 100, + decoration: BoxDecoration( + color: Colors.lightBlue + ), + child: SafeArea( + child: Stack( + alignment: Alignment.center, + children: [ + ClipRRect( + borderRadius: BorderRadius.circular(50), + child: TextFormField( + decoration: InputDecoration( + contentPadding: EdgeInsets.fromLTRB(20, 0, 50, 0), + border: InputBorder.none, + filled: true, + hintText: "Search...", + fillColor: Colors.grey.shade200 + ), + ), + ), + Container( + alignment: Alignment.centerRight, + child: ClipRRect( + borderRadius: BorderRadius.circular(18), + child: Material( + color: Colors.transparent, + borderRadius: BorderRadius.circular(18), + child: IconButton( + icon: Icon( + Icons.search + ), + onPressed: (){} + ), + ), + ), + ) + ], + ), + ), + ), + Expanded( + child: Center( + child: Text("No Data yet!"), + ) + ) + ], + ) ); } } \ No newline at end of file