Skip to content

Commit

Permalink
Merge pull request #33 from koji-1009/primary_param
Browse files Browse the repository at this point in the history
Primary param
  • Loading branch information
koji-1009 authored Jan 4, 2023
2 parents b23621e + 1f2945b commit d9eaced
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions lib/view/search/search_meeting_detail_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ class SearchMeetingDetailScreen extends HookConsumerWidget {
params: params,
),
child: PagingList<int, MeetingRecordDetail>(
primary: true,
dataSource: dataSource,
builder: (context, element, index) => StickyHeader(
header: Container(
Expand All @@ -69,6 +70,7 @@ class SearchMeetingDetailScreen extends HookConsumerWidget {
),
),
content: ListView.builder(
primary: false,
shrinkWrap: true,
itemBuilder: (context, i) {
final record = element.speechRecord[i];
Expand Down
4 changes: 2 additions & 2 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ packages:
name: checked_yaml
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.1"
version: "2.0.2"
clock:
dependency: transitive
description:
Expand Down Expand Up @@ -440,7 +440,7 @@ packages:
name: paging_view
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.2"
version: "1.0.3"
path:
dependency: transitive
description:
Expand Down

0 comments on commit d9eaced

Please sign in to comment.