Skip to content

Commit

Permalink
remove search bar
Browse files Browse the repository at this point in the history
  • Loading branch information
ksh-b committed Mar 2, 2024
1 parent 6d24674 commit ed01bc3
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions lib/pages/feed.dart
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,6 @@ class _FeedPageState extends State<FeedPage>
child: Scaffold(
appBar: AppBar(
title: _isSearching ? TextField() : Text('What\'s happening?'),
actions: <Widget>[
IconButton(
icon: Icon( _isSearching ? Icons.close: Icons.search),
onPressed: () {
setState(() {
_isSearching = !_isSearching;
});
},
),
],
),
body: RefreshIndicator(
key: _refreshIndicatorKey,
Expand Down

0 comments on commit ed01bc3

Please sign in to comment.