Add company variables to help
This commit is contained in:
parent
fd9ed1e63c
commit
be3e5f44b8
|
|
@ -55,12 +55,13 @@ class _VariablesHelpState extends State<VariablesHelp>
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
SizedBox(
|
SizedBox(
|
||||||
height: 400,
|
height: 500,
|
||||||
child: TabBarView(
|
child: TabBarView(
|
||||||
controller: _controller,
|
controller: _controller,
|
||||||
children: [
|
children: [
|
||||||
_VariableGrid(
|
_VariableGrid(
|
||||||
fields: [
|
fields: [
|
||||||
|
'view_link', // TODO change to email variables
|
||||||
InvoiceFields.amount,
|
InvoiceFields.amount,
|
||||||
InvoiceFields.discount,
|
InvoiceFields.discount,
|
||||||
InvoiceFields.balance,
|
InvoiceFields.balance,
|
||||||
|
|
@ -195,6 +196,7 @@ class _VariableGrid extends StatelessWidget {
|
||||||
return Padding(
|
return Padding(
|
||||||
padding: const EdgeInsets.only(top: 16),
|
padding: const EdgeInsets.only(top: 16),
|
||||||
child: GridView.count(
|
child: GridView.count(
|
||||||
|
physics: NeverScrollableScrollPhysics(),
|
||||||
padding: EdgeInsets.all(6),
|
padding: EdgeInsets.all(6),
|
||||||
shrinkWrap: true,
|
shrinkWrap: true,
|
||||||
primary: true,
|
primary: true,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue