更新商务合作页面

master
laiiihz 4 years ago
parent a30a503173
commit f242c514b4

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

@ -10,15 +10,51 @@ class BussinessCooperationPage extends StatelessWidget {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
backgroundColor: Color(0xFFF7F7F7),
appBar: CustomAppBar( appBar: CustomAppBar(
title: '商务合作', title: '商务合作',
themeData: AppThemes.themeDataGrey.appBarTheme, themeData: AppThemes.themeDataGrey.appBarTheme,
elevation: 0,
), ),
body: ListView( body: ListView(
children: [ children: [
Image.asset( Padding(
R.ASSETS_BUSINESSCOOPERATION_PNG_WEBP, padding: EdgeInsets.symmetric(horizontal: 15.w, vertical: 10.w),
fit: BoxFit.fill, child: Image.asset(
R.ASSETS_BUSINESS_COOPERATION_WEBP,
fit: BoxFit.fitWidth,
),
),
Container(
padding: EdgeInsets.symmetric(horizontal: 15.w, vertical: 10.w),
color: Colors.white,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: [
Text(
'''如果您
''',
style: TextStyle(
fontWeight: FontWeight.bold,
color: Color(0xFF333333),
fontSize: 14.sp,
),
),
10.hb,
Text(
'''地址浙江省宁波市鄞州区菁华路108号德邦大厦四楼
400-889-4489
Dora@cn-recook.com''',
style: TextStyle(
color: Color(0xFF333333),
fontSize: 12.sp,
),
),
],
),
), ),
], ],
), ),

Loading…
Cancel
Save