File tree 2 files changed +8
-15
lines changed
2 files changed +8
-15
lines changed Original file line number Diff line number Diff line change @@ -29,27 +29,20 @@ class HomePage extends ConsumerWidget {
29
29
MaterialPageRoute (builder: (context) => WelcomePage ()));
30
30
}),
31
31
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
+ )
43
39
],
44
40
),
45
41
body: Scrollbar (
46
42
child: ListView .builder (
47
43
itemCount: dataList.length,
48
44
itemBuilder: (context, index) {
49
45
final widgetData = dataList[index];
50
- if (widgetData.name == 'Algolia' && Platform .isAndroid) {
51
- return SizedBox ();
52
- }
53
46
return ListTileCard (
54
47
page: AlgoliaSearchIndex .retrieveWidget (widgetData.name),
55
48
title: widgetData.name,
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ description: A new Flutter project.
5
5
# pub.dev using `pub publish`. This is preferred for private packages.
6
6
publish_to : " none" # Remove this line if you wish to publish to pub.dev
7
7
8
- version : 1.7.0+10
8
+ version : 1.7.1+11
9
9
10
10
environment :
11
11
sdk : " >=2.12.0 <3.0.0"
You can’t perform that action at this time.
0 commit comments