Merge branch 'master' of gitlab.com:Cloud_Solution/driver-app into delivery_confirmed
# Conflicts: # lib/pages/delivery/delivery_confirmed_page.dart # lib/pages/delivery/information_page.dartsetting_branch
parent
ee067c4001
commit
36f11f1474
@ -0,0 +1,36 @@
|
|||||||
|
import 'package:driverapp/uitl/translations_delegate_base.dart';
|
||||||
|
import 'package:driverapp/widgets/others/app_scaffold_widget.dart';
|
||||||
|
import 'package:flutter/cupertino.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
|
||||||
|
class SettingPage extends StatelessWidget {
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return AppScaffold(
|
||||||
|
isShowAppBar: true,
|
||||||
|
appBarColor: Theme.of(context).primaryColor,
|
||||||
|
arrowColor: Colors.white,
|
||||||
|
titleColor: Colors.white,
|
||||||
|
body: Container(
|
||||||
|
child: Column(
|
||||||
|
children: <Widget>[
|
||||||
|
CircleAvatar(
|
||||||
|
radius: 25.5,
|
||||||
|
backgroundColor: Color(0xff30B7B9),
|
||||||
|
child: CircleAvatar(
|
||||||
|
backgroundColor: Color(0xff30B7B9),
|
||||||
|
maxRadius: 26.0,
|
||||||
|
child: Image.asset(
|
||||||
|
'assets/images/driver.png',
|
||||||
|
fit: BoxFit.contain,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue