fix courier name

This commit is contained in:
Inex Code 2022-12-27 08:50:42 +03:00
parent b6b0cdaf65
commit 96d70a6725
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ class _Courier extends StatelessWidget {
), ),
const SizedBox(width: 20), const SizedBox(width: 20),
Flexible( Flexible(
child: Text(courier.title), child: Text('${courier.name} ${courier.surname}'),
), ),
], ],
), ),