|
|
|
|
@ -16,7 +16,7 @@ class DeviceTransferInfoSection extends StatelessWidget {
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
UserProvider userProvider = Provider.of<UserProvider>(context);
|
|
|
|
|
info.userName = Provider.of<UserProvider>(context).user.username;
|
|
|
|
|
final subtitle = AppLocalization.of(context).subtitle;
|
|
|
|
|
return Column(
|
|
|
|
|
children: [
|
|
|
|
|
@ -30,7 +30,7 @@ class DeviceTransferInfoSection extends StatelessWidget {
|
|
|
|
|
),
|
|
|
|
|
RequestInfoRow(
|
|
|
|
|
title: subtitle.engineerName,
|
|
|
|
|
info: userProvider.user.username,
|
|
|
|
|
info: info.userName,
|
|
|
|
|
),
|
|
|
|
|
RequestInfoRow(
|
|
|
|
|
title: subtitle.workingHours,
|
|
|
|
|
|