Change padding from 15 to 16
This commit is contained in:
parent
45330c278d
commit
c9cd4c36db
|
|
@ -40,7 +40,7 @@ class ActionMenuButton extends StatelessWidget {
|
|||
child: Row(
|
||||
children: <Widget>[
|
||||
Icon(getEntityActionIcon(action)),
|
||||
SizedBox(width: 15.0),
|
||||
SizedBox(width: 16.0),
|
||||
Text(AppLocalization.of(context).lookup(action.toString()) ?? ''),
|
||||
],
|
||||
),
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@ class InvoiceItemListTile extends StatelessWidget {
|
|||
children: <Widget>[
|
||||
ListTile(
|
||||
contentPadding:
|
||||
const EdgeInsets.symmetric(horizontal: 20, vertical: 15),
|
||||
const EdgeInsets.symmetric(horizontal: 20, vertical: 16),
|
||||
onTap: onTap,
|
||||
title: Row(
|
||||
children: <Widget>[
|
||||
|
|
|
|||
|
|
@ -468,7 +468,7 @@ class AppDataTable extends StatelessWidget {
|
|||
static const double _sortArrowPadding = 2.0;
|
||||
static const double _headingFontSize = 12.0;
|
||||
static const Duration _sortArrowAnimationDuration =
|
||||
Duration(milliseconds: 150);
|
||||
Duration(milliseconds: 160);
|
||||
static const Color _grey100Opacity =
|
||||
Color(0x0A000000); // Grey 100 as opacity instead of solid color
|
||||
static const Color _grey300Opacity =
|
||||
|
|
|
|||
|
|
@ -214,7 +214,7 @@ class _UpgradeDialogState extends State<UpgradeDialog> {
|
|||
)
|
||||
],
|
||||
),
|
||||
contentPadding: const EdgeInsets.symmetric(horizontal: 8, vertical: 15),
|
||||
contentPadding: const EdgeInsets.symmetric(horizontal: 8, vertical: 16),
|
||||
children: [
|
||||
if (_showPastPurchases)
|
||||
..._purchases.map((purchase) => ListTile(
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@ class ClientListItem extends StatelessWidget {
|
|||
child: Row(
|
||||
children: <Widget>[
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(right: 15),
|
||||
padding: const EdgeInsets.only(right: 16),
|
||||
child: showCheckbox
|
||||
? Padding(
|
||||
padding: const EdgeInsets.only(right: 20),
|
||||
|
|
|
|||
|
|
@ -735,7 +735,7 @@ class _FeesEditorState extends State<FeesEditor> {
|
|||
initialTaxName: settings.taxName3,
|
||||
initialTaxRate: settings.taxRate3,
|
||||
),
|
||||
SizedBox(height: 15),
|
||||
SizedBox(height: 16),
|
||||
SwitchListTile(
|
||||
value: settings.adjustFeePercent,
|
||||
onChanged: (value) => viewModel.onChanged(companyGateway.rebuild(
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ class CreditListItem extends StatelessWidget {
|
|||
child: Row(
|
||||
children: <Widget>[
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(right: 15),
|
||||
padding: const EdgeInsets.only(right: 16),
|
||||
child: showCheckbox
|
||||
? IgnorePointer(
|
||||
ignoring: listUIState.isInMultiselect(),
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ class DashboardPanels extends StatelessWidget {
|
|||
? () => viewModel.onOffsetChanged(-1)
|
||||
: null,
|
||||
),
|
||||
SizedBox(width: 15),
|
||||
SizedBox(width: 16),
|
||||
Expanded(
|
||||
child: InkWell(
|
||||
child: Row(
|
||||
|
|
|
|||
|
|
@ -98,7 +98,7 @@ class InvoiceListItem extends StatelessWidget {
|
|||
child: Row(
|
||||
children: <Widget>[
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(right: 15),
|
||||
padding: const EdgeInsets.only(right: 16),
|
||||
child: showCheckbox
|
||||
? IgnorePointer(
|
||||
ignoring: listUIState.isInMultiselect(),
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@ class PaymentListItem extends StatelessWidget {
|
|||
child: Row(
|
||||
children: <Widget>[
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(right: 15),
|
||||
padding: const EdgeInsets.only(right: 16),
|
||||
child: showCheckbox
|
||||
? IgnorePointer(
|
||||
ignoring: listUIState.isInMultiselect(),
|
||||
|
|
|
|||
|
|
@ -183,7 +183,7 @@ class _PaymentRefundState extends State<PaymentRefund> {
|
|||
actions: <Widget>[
|
||||
if (viewModel.state.isSaving)
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(right: 15),
|
||||
padding: const EdgeInsets.only(right: 16),
|
||||
child: SizedBox(
|
||||
child: CircularProgressIndicator(),
|
||||
height: 30,
|
||||
|
|
|
|||
|
|
@ -76,7 +76,7 @@ class ProductListItem extends StatelessWidget {
|
|||
child: Row(
|
||||
children: <Widget>[
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(right: 15),
|
||||
padding: const EdgeInsets.only(right: 16),
|
||||
child: showCheckbox
|
||||
? IgnorePointer(
|
||||
ignoring: listUIState.isInMultiselect(),
|
||||
|
|
|
|||
|
|
@ -93,7 +93,7 @@ class QuoteListItem extends StatelessWidget {
|
|||
child: Row(
|
||||
children: <Widget>[
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(right: 15),
|
||||
padding: const EdgeInsets.only(right: 16),
|
||||
child: showCheckbox
|
||||
? IgnorePointer(
|
||||
ignoring: listUIState.isInMultiselect(),
|
||||
|
|
|
|||
|
|
@ -365,7 +365,7 @@ class _CustomFormFieldState extends State<CustomFormField> {
|
|||
hint: localization.commaSeparatedList,
|
||||
),
|
||||
),
|
||||
SizedBox(height: 15),
|
||||
SizedBox(height: 16),
|
||||
],
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -182,7 +182,7 @@ class _GeneratedNumbersState extends State<GeneratedNumbers>
|
|||
onChanged: (value) => viewModel.onSettingsChanged(settings
|
||||
.rebuild((b) => b..sharedInvoiceQuoteCounter = value)),
|
||||
),
|
||||
SizedBox(height: 15),
|
||||
SizedBox(height: 16),
|
||||
DecoratedFormField(
|
||||
label: localization.recurringPrefix,
|
||||
controller: _recurringPrefixController,
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ class _TaxSettingsState extends State<TaxSettings> {
|
|||
onChanged: (value) => viewModel.onSettingsChanged(
|
||||
settings.rebuild((b) => b..numberOfItemTaxRates = value)),
|
||||
),
|
||||
SizedBox(height: 15),
|
||||
SizedBox(height: 16),
|
||||
BoolDropdownButton(
|
||||
iconData: FontAwesomeIcons.percent,
|
||||
label: localization.inclusiveTaxes,
|
||||
|
|
|
|||
Loading…
Reference in New Issue