diff --git a/lib/app/home/home_page.dart b/lib/app/home/home_page.dart index 14793c1..231e32c 100644 --- a/lib/app/home/home_page.dart +++ b/lib/app/home/home_page.dart @@ -29,17 +29,13 @@ class HomePage extends ConsumerWidget { MaterialPageRoute(builder: (context) => WelcomePage())); }), actions: [ - Platform.isIOS - ? IconButton( - icon: Icon(Icons.search), - onPressed: () { - Navigator.push( - context, - MaterialPageRoute( - builder: (context) => AlgoliaPage())); - }, - ) - : SizedBox(), + IconButton( + icon: Icon(Icons.search), + onPressed: () { + Navigator.push(context, + MaterialPageRoute(builder: (context) => AlgoliaPage())); + }, + ) ], ), body: Scrollbar( @@ -47,9 +43,6 @@ class HomePage extends ConsumerWidget { itemCount: dataList.length, itemBuilder: (context, index) { final widgetData = dataList[index]; - if (widgetData.name == 'Algolia' && Platform.isAndroid) { - return SizedBox(); - } return ListTileCard( page: AlgoliaSearchIndex.retrieveWidget(widgetData.name), title: widgetData.name, diff --git a/pubspec.yaml b/pubspec.yaml index e1ace4b..dd8acac 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -5,7 +5,7 @@ description: A new Flutter project. # pub.dev using `pub publish`. This is preferred for private packages. publish_to: "none" # Remove this line if you wish to publish to pub.dev -version: 1.7.0+10 +version: 1.7.1+11 environment: sdk: ">=2.12.0 <3.0.0"