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