|
@@ -10,10 +10,10 @@ class ContactUSWidget extends StatelessWidget {
|
|
|
var imageWidth = 0.0;
|
|
|
@override
|
|
|
Widget build(BuildContext context) {
|
|
|
- if(Util.isWeb()){
|
|
|
+ if (Util.isWeb()) {
|
|
|
textSize = 30.sp;
|
|
|
imageWidth = 230.r;
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
textSize = 60.sp;
|
|
|
imageWidth = 500.w;
|
|
|
}
|
|
@@ -21,21 +21,7 @@ class ContactUSWidget extends StatelessWidget {
|
|
|
child: Column(
|
|
|
children: [
|
|
|
Container(
|
|
|
- margin: EdgeInsets.only(top: 100.h),
|
|
|
- child: Text(
|
|
|
- "联系我们",
|
|
|
- style: TextStyle(fontSize: textSize, color: Colors.black),
|
|
|
- ),
|
|
|
- ),
|
|
|
- Container(
|
|
|
- margin: EdgeInsets.only(left: 60, right: 60, top: 30.h),
|
|
|
- child: Text(
|
|
|
- AppConfig.configPhone,
|
|
|
- style: TextStyle(fontSize: textSize, color: Colors.black),
|
|
|
- ),
|
|
|
- ),
|
|
|
- Container(
|
|
|
- margin: EdgeInsets.only(left: 60, right: 60, top: 90.h),
|
|
|
+ margin: EdgeInsets.only(left: 60, right: 60, top: 180.h),
|
|
|
child: Text("微信咨询",
|
|
|
style: TextStyle(fontSize: textSize, color: Colors.black)),
|
|
|
),
|