import core.widgets; import material.widgets; import local.widgets; widget listEntry = IntrinsicHeight( child: Row( crossAxisAlignment: "stretch", children: [ Container( color: 0xFFCCCCCC, child: Column( mainAxisAlignment: "center", children: [ Padding( padding: [5.0, 5.0, 5.0, 5.0], child: ListImage(columnName: "IMAGE"), ), ], ), ), Flexible( child: Padding( padding: [5.0, 5.0, 5.0, 5.0], child: Column( crossAxisAlignment: "start", children: [ Row( children: [ ListCell( columnName: "SALU_SALUTATION", postfix: "; " ), ListCell(columnName: "LASTNAME"), ], ), ListSpace( notEmptyColumnNames: ["ZIP", "TOWN"], height: 5.0, ), Row( children: [ ListCell( columnName: "ZIP", useFormat: false, postfix: " " ), ListCell(columnName: "TOWN"), ], ), ListSpace( notEmptyColumnNames: ["LONGVALUE"], height: 5.0, ), Wrap( children: [ ListCell(columnName: "LONGVALUE"), ], ), SizedBox(height: 15.0), Row( children: [ ListCell(columnName: "ACTIVE"), ListCell( columnName: "CHOICE", prefix: " " ), ], ), ], ), ), ), ], ), );