fixed jira tm-172 and pagination dialog design changed
This commit is contained in:
@@ -282,7 +282,10 @@ class _DesktopPagination extends StatelessWidget {
|
||||
final selectedPage = await showDialog<int>(
|
||||
context: context,
|
||||
builder:
|
||||
(context) => PageSelectionDialog(totalPages: totalPages),
|
||||
(context) => PageSelectionDialog(
|
||||
totalPages: totalPages,
|
||||
currentPage: currentPage,
|
||||
),
|
||||
);
|
||||
if (selectedPage != null) {
|
||||
onPageSelected(selectedPage);
|
||||
|
||||
@@ -32,7 +32,11 @@ class _TabletTendersPageState extends State<TabletTendersPage> {
|
||||
return Scaffold(
|
||||
key: key,
|
||||
backgroundColor: AppColors.backgroundColor,
|
||||
appBar: tabletAppBar(title: TendersStrings.tendersTitle, key: key),
|
||||
appBar: tabletAppBar(
|
||||
title: TendersStrings.tendersTitle,
|
||||
key: key,
|
||||
context: context,
|
||||
),
|
||||
drawer: const TabletNavigationWidget(currentIndex: 1),
|
||||
body: Consumer<TendersViewModel>(
|
||||
builder: (context, viewModel, child) {
|
||||
|
||||
Reference in New Issue
Block a user