Skip to content

Commit 9712f5e

Browse files
authored
Merge pull request #47 from mafreud/fix-algolia
fix algolia on android
2 parents 27547eb + 275227d commit 9712f5e

File tree

2 files changed

+8
-15
lines changed

2 files changed

+8
-15
lines changed

lib/app/home/home_page.dart

+7-14
Original file line numberDiff line numberDiff line change
@@ -29,27 +29,20 @@ class HomePage extends ConsumerWidget {
2929
MaterialPageRoute(builder: (context) => WelcomePage()));
3030
}),
3131
actions: [
32-
Platform.isIOS
33-
? IconButton(
34-
icon: Icon(Icons.search),
35-
onPressed: () {
36-
Navigator.push(
37-
context,
38-
MaterialPageRoute(
39-
builder: (context) => AlgoliaPage()));
40-
},
41-
)
42-
: SizedBox(),
32+
IconButton(
33+
icon: Icon(Icons.search),
34+
onPressed: () {
35+
Navigator.push(context,
36+
MaterialPageRoute(builder: (context) => AlgoliaPage()));
37+
},
38+
)
4339
],
4440
),
4541
body: Scrollbar(
4642
child: ListView.builder(
4743
itemCount: dataList.length,
4844
itemBuilder: (context, index) {
4945
final widgetData = dataList[index];
50-
if (widgetData.name == 'Algolia' && Platform.isAndroid) {
51-
return SizedBox();
52-
}
5346
return ListTileCard(
5447
page: AlgoliaSearchIndex.retrieveWidget(widgetData.name),
5548
title: widgetData.name,

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: A new Flutter project.
55
# pub.dev using `pub publish`. This is preferred for private packages.
66
publish_to: "none" # Remove this line if you wish to publish to pub.dev
77

8-
version: 1.7.0+10
8+
version: 1.7.1+11
99

1010
environment:
1111
sdk: ">=2.12.0 <3.0.0"

0 commit comments

Comments
 (0)