This commit is contained in:
unknown 2018-06-10 05:35:39 -07:00
parent 0951d111b2
commit 4f19fe77bc
1 changed files with 8 additions and 4 deletions

View File

@ -90,10 +90,14 @@ class ClientOverview extends StatelessWidget {
color: Colors.grey[800], color: Colors.grey[800],
), ),
SizedBox(width: 10.0), SizedBox(width: 10.0),
Text( Flexible(
client.privateNotes, child: Text(
style: TextStyle( client.privateNotes,
color: Colors.grey[800], maxLines: null,
//keyboardType: TextInputType.multiline,
style: TextStyle(
color: Colors.grey[800],
),
), ),
), ),
], ],