Settings
This commit is contained in:
parent
485e05a859
commit
2918b96bb7
|
|
@ -58,6 +58,7 @@ class CompanyGatewayListItem extends StatelessWidget {
|
|||
? () => onEntityAction(EntityAction.toggleMultiselect)
|
||||
: onTap,
|
||||
onLongPress: onLongPress,
|
||||
//trailing: ,
|
||||
leading: showCheckbox
|
||||
? IgnorePointer(
|
||||
ignoring: listUIState.isInMultiselect(),
|
||||
|
|
@ -68,7 +69,7 @@ class CompanyGatewayListItem extends StatelessWidget {
|
|||
activeColor: Theme.of(context).accentColor,
|
||||
),
|
||||
)
|
||||
: null,
|
||||
: Icon(Icons.drag_handle),
|
||||
title: Container(
|
||||
width: MediaQuery.of(context).size.width,
|
||||
child: Row(
|
||||
|
|
|
|||
|
|
@ -72,11 +72,10 @@ class SettingsList extends StatelessWidget {
|
|||
section: kSettingsLocalization,
|
||||
viewModel: viewModel,
|
||||
),
|
||||
if (showAll)
|
||||
SettingsListTile(
|
||||
section: kSettingsOnlinePayments,
|
||||
viewModel: viewModel,
|
||||
),
|
||||
SettingsListTile(
|
||||
section: kSettingsOnlinePayments,
|
||||
viewModel: viewModel,
|
||||
),
|
||||
if (showAll)
|
||||
SettingsListTile(
|
||||
section: kSettingsTaxSettings,
|
||||
|
|
|
|||
Loading…
Reference in New Issue