literally nothing
This commit is contained in:
parent
1e40d78dcd
commit
3dba00b0b6
2 changed files with 11 additions and 11 deletions
|
@ -24,7 +24,7 @@ class Organisation {
|
||||||
class Organisations {
|
class Organisations {
|
||||||
|
|
||||||
List<Organisation> getTestData() {
|
List<Organisation> getTestData() {
|
||||||
var numItems = 200;
|
var numItems = 10;
|
||||||
var itemsList = new List<Organisation>();
|
var itemsList = new List<Organisation>();
|
||||||
|
|
||||||
for (int i = 0; i < numItems; i++) {
|
for (int i = 0; i < numItems; i++) {
|
||||||
|
|
|
@ -36,16 +36,16 @@ class ReceiptPage2State extends State<ReceiptPage2> {
|
||||||
|
|
||||||
return PlatformScaffold(
|
return PlatformScaffold(
|
||||||
appBar: AppBar(
|
appBar: AppBar(
|
||||||
backgroundColor: Colors.blue[400],
|
backgroundColor: Colors.blue[400],
|
||||||
title: Text(
|
title: Text(
|
||||||
"Submit Receipt",
|
"Submit Receipt",
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 20,
|
fontSize: 20,
|
||||||
color: Colors.white,
|
color: Colors.white,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
centerTitle: true,
|
||||||
centerTitle: true,
|
iconTheme: IconThemeData(color: Colors.black),
|
||||||
iconTheme: IconThemeData(color: Colors.black),
|
|
||||||
),
|
),
|
||||||
|
|
||||||
body: ListView(
|
body: ListView(
|
||||||
|
@ -107,7 +107,7 @@ class ReceiptPage2State extends State<ReceiptPage2> {
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
},// onPressed: () => showDatePicker(context: context, initialDate: _transactionDate, firstDate: null, lastDate: _transactionDate),
|
},
|
||||||
child: Text(
|
child: Text(
|
||||||
transaction.date == null
|
transaction.date == null
|
||||||
? 'None set.'
|
? 'None set.'
|
||||||
|
|
Reference in a new issue