|
|
|
|
@ -5,6 +5,7 @@ import 'package:driverapp/widgets/delivery/package_content.dart';
|
|
|
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
|
|
import '../../uitl/translations_delegate_base.dart';
|
|
|
|
|
import '../../widgets/others/app_scaffold_widget.dart';
|
|
|
|
|
|
|
|
|
|
class InformationPage extends StatelessWidget {
|
|
|
|
|
@ -43,7 +44,9 @@ class InformationPage extends StatelessWidget {
|
|
|
|
|
),
|
|
|
|
|
Container(
|
|
|
|
|
child: Text(
|
|
|
|
|
'Delivery information',
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(context)
|
|
|
|
|
.deliveryInfo,
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
fontSize: 20,
|
|
|
|
|
@ -84,7 +87,9 @@ class InformationPage extends StatelessWidget {
|
|
|
|
|
size: 30,
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
),
|
|
|
|
|
btnName: 'Location',
|
|
|
|
|
btnName: TranslationBase
|
|
|
|
|
.of(context)
|
|
|
|
|
.location,
|
|
|
|
|
btnFunction: () {},
|
|
|
|
|
),
|
|
|
|
|
delivery_info_button(
|
|
|
|
|
@ -104,7 +109,9 @@ class InformationPage extends StatelessWidget {
|
|
|
|
|
size: 30,
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
),
|
|
|
|
|
btnName: 'SMS',
|
|
|
|
|
btnName: TranslationBase
|
|
|
|
|
.of(context)
|
|
|
|
|
.sms,
|
|
|
|
|
btnFunction: () {},
|
|
|
|
|
),
|
|
|
|
|
delivery_info_button(
|
|
|
|
|
@ -114,7 +121,9 @@ class InformationPage extends StatelessWidget {
|
|
|
|
|
size: 30,
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
),
|
|
|
|
|
btnName: 'Call',
|
|
|
|
|
btnName: TranslationBase
|
|
|
|
|
.of(context)
|
|
|
|
|
.call,
|
|
|
|
|
btnFunction: () {},
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
@ -128,7 +137,9 @@ class InformationPage extends StatelessWidget {
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
Text(
|
|
|
|
|
'Package Content',
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(context)
|
|
|
|
|
.packageContent,
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
|
fontSize: 20),
|
|
|
|
|
@ -186,7 +197,9 @@ class InformationPage extends StatelessWidget {
|
|
|
|
|
side: BorderSide(color: Color(0xff41bdbb)),
|
|
|
|
|
),
|
|
|
|
|
child: Text(
|
|
|
|
|
'Client Reached',
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(context)
|
|
|
|
|
.clientReached,
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
|
|