diff --git a/assets/business_cooperation.webp b/assets/business_cooperation.webp new file mode 100644 index 0000000..b6d061e Binary files /dev/null and b/assets/business_cooperation.webp differ diff --git a/lib/widgets/bussiness_cooperation_page.dart b/lib/widgets/bussiness_cooperation_page.dart index 581c6f0..0ca1e1e 100644 --- a/lib/widgets/bussiness_cooperation_page.dart +++ b/lib/widgets/bussiness_cooperation_page.dart @@ -10,15 +10,51 @@ class BussinessCooperationPage extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( + backgroundColor: Color(0xFFF7F7F7), appBar: CustomAppBar( title: '商务合作', themeData: AppThemes.themeDataGrey.appBarTheme, + elevation: 0, ), body: ListView( children: [ - Image.asset( - R.ASSETS_BUSINESSCOOPERATION_PNG_WEBP, - fit: BoxFit.fill, + Padding( + padding: EdgeInsets.symmetric(horizontal: 15.w, vertical: 10.w), + 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, + ), + ), + ], + ), ), ], ),